Skip to content

Commit 980fb4b

Browse files
committed
remove preview
1 parent e08f085 commit 980fb4b

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

articles/app-service/overview-webjobs.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ WebJobs come in two primary types:
2323
For scheduled tasks, NCRONTAB expressions are used to define precise execution intervals, giving you fine-grained control over when the jobs run.
2424

2525
## Supported Platforms and File Types
26-
Azure WebJobs support multiple platforms:
27-
- **Windows:** Fully supported for traditional WebJobs.
28-
- **Linux and Containers:** Preview support is available for Linux code, Linux containers, and Windows containers.
26+
Azure WebJobs is fully supported on Windows code, Windows containers, Linux code, and Linux containers.
2927

3028
Supported file types include:
3129
- Windows command scripts (`.cmd`, `.bat`, `.exe`)

articles/app-service/webjobs-create.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ Deploy WebJobs by using the [Azure portal](https://portal.azure.com) to upload a
2121

2222
If instead of the Azure App Service, you're using Visual Studio to develop and deploy WebJobs, see [Deploy WebJobs using Visual Studio](webjobs-dotnet-deploy-vs.md).
2323

24-
> [!NOTE]
25-
> WebJobs for **Windows container**, **Linux code**, and **Linux container** is in preview. WebJobs for Windows code is generally available and not in preview.
26-
2724
## Overview
2825

2926
WebJobs is a feature of [Azure App Service](index.yml) that enables you to run a program or script in the same instance as a web app. All app service plans support WebJobs. There's no extra cost to use WebJobs.
@@ -42,22 +39,13 @@ Azure Functions provides another way to run programs and scripts. For a comparis
4239
The following file types are supported:<br>
4340
**.cmd**, **.bat**, **.exe** (using Windows cmd)<br>**.ps1** (using PowerShell)<br>**.sh** (using Bash)<br>**.js** (using Node.js)<br>**.jar** (using Java)<br><br>The necessary runtimes to run these file types are already installed on the web app instance.
4441
### [Windows container](#tab/windowscontainer)
45-
> [!NOTE]
46-
> WebJobs for Windows container is in preview.
47-
>
4842

4943
The following file types are supported:<br>
5044
**.cmd**, **.bat**, **.exe** (using Windows cmd)<br><br>In addition to these file types, WebJobs written in the language runtime of the Windows container app.<br>Example: .jar and .war scripts if the container is a Java app.
5145
### [Linux code](#tab/linuxcode)
52-
> [!NOTE]
53-
> WebJobs for Linux code is in preview.
54-
>
5546

5647
**.sh** scripts are supported.<br><br>In addition to shell scripts, WebJobs written in the language of the selected runtime are also supported.<br>Example: Python (.py) scripts if the main site is a Python code app.
5748
### [Linux container](#tab/linuxcontainer)
58-
> [!NOTE]
59-
> WebJobs for Linux container is in preview.
60-
>
6149

6250
**.sh** scripts are supported. <br><br>In addition to shell scripts, WebJobs written in the language runtime of the Linux container app are also supported. <br>Example: Node (.js) scripts if the site is a Node.js app.
6351

0 commit comments

Comments
 (0)