Skip to content

Commit e886ec3

Browse files
authored
Merge pull request #277105 from MicrosoftDocs/main
Publish to live, Tuesday 4 AM PST, 6/4
2 parents 98de50d + b0558c6 commit e886ec3

File tree

47 files changed

+508
-453
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+508
-453
lines changed

articles/app-service/deploy-azure-pipelines.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Configure CI/CD with Azure Pipelines
33
description: Learn how to deploy your code to Azure App Service from a CI/CD pipeline with Azure Pipelines.
44
ms.topic: article
5-
ms.date: 12/13/2023
5+
ms.date: 06/04/2024
66
ms.author: jukullam
77
ms.manager: mijacobs
88
ms.custom: "devops-pipelines-deploy"
@@ -91,8 +91,6 @@ To get started:
9191
buildConfiguration: 'Release'
9292

9393
steps:
94-
- script: dotnet build --configuration $(buildConfiguration)
95-
displayName: 'dotnet build $(buildConfiguration)'
9694
- task: DotNetCoreCLI@2
9795
inputs:
9896
command: 'publish'
@@ -140,8 +138,6 @@ variables:
140138
buildConfiguration: 'Release'
141139

142140
steps:
143-
- script: dotnet build --configuration $(buildConfiguration)
144-
displayName: 'dotnet build $(buildConfiguration)'
145141
- task: DotNetCoreCLI@2
146142
inputs:
147143
command: 'publish'
@@ -390,8 +386,6 @@ variables:
390386
buildConfiguration: 'Release'
391387
392388
steps:
393-
- script: dotnet build --configuration $(buildConfiguration)
394-
displayName: 'dotnet build $(buildConfiguration)'
395389
- task: DotNetCoreCLI@2
396390
inputs:
397391
command: 'publish'

articles/app-service/reference-app-settings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ APACHE_RUN_GROUP | RUN sed -i 's!User ${APACHE_RUN_GROUP}!Group www-data!g' /etc
268268
> [!div class="mx-tdCol5BreakAll"]
269269
> |Application Setting | Scope | Value | Max | Description
270270
> |-------------|-------------|-------------|---------------|--------------------|
271-
> |WEBSITES_ENABLE_APP_SERVICE_STORAGE|Web App|true|-|When set to TRUE, file contents are preserved during restarts. |
271+
> |WEBSITES_ENABLE_APP_SERVICE_STORAGE|Web App|true|-|When set to TRUE, file contents are preserved during restarts. |
272272
> |WP_MEMORY_LIMIT|WordPress|128M|512M|Frontend or general wordpress PHP memory limit (per script). Can't be more than PHP_MEMORY_LIMIT|
273273
> |WP_MAX_MEMORY_LIMIT|WordPress|256M|512M|Admin dashboard PHP memory limit (per script). Generally Admin dashboard/ backend scripts takes lot of memory compared to frontend scripts. Can't be more than PHP_MEMORY_LIMIT.|
274274
> |PHP_MEMORY_LIMIT|PHP|512M|512M|Memory limits for general PHP script. It can only be decreased.|
@@ -335,7 +335,7 @@ For more information on custom containers, see [Run a custom container in Azure]
335335

336336
| Setting name| Description | Example |
337337
|-|-|-|
338-
| `WEBSITES_ENABLE_APP_SERVICE_STORAGE` | Set to `true` to enable the `/home` directory to be shared across scaled instances. The default is `true` for custom containers. ||
338+
| `WEBSITES_ENABLE_APP_SERVICE_STORAGE` | Set to `true` to enable the `/home` directory to be shared across scaled instances. The default is `false` for custom containers. ||
339339
| `WEBSITES_CONTAINER_START_TIME_LIMIT` | Amount of time in seconds to wait for the container to complete start-up before restarting the container. Default is `230`. You can increase it up to the maximum of `1800`. ||
340340
| `WEBSITES_CONTAINER_STOP_TIME_LIMIT` | Amount of time in seconds to wait for the container to terminate gracefully. Default is `5`. You can increase to a maximum of `120` ||
341341
| `DOCKER_REGISTRY_SERVER_URL` | URL of the registry server, when running a custom container in App Service. For security, this variable isn't passed on to the container. | `https://<server-name>.azurecr.io` |

articles/azure-functions/functions-bindings-cosmosdb-v2-input.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,7 @@ For information on setup and configuration details, see the [overview](./functio
2323
[!INCLUDE [functions-nodejs-model-tabs-description](../../includes/functions-nodejs-model-tabs-description.md)]
2424
::: zone-end
2525
::: zone pivot="programming-language-python"
26-
Azure Functions supports two programming models for Python. The way that you define your bindings depends on your chosen programming model.
27-
28-
# [v2](#tab/python-v2)
29-
The Python v2 programming model lets you define bindings using decorators directly in your Python function code. For more information, see the [Python developer guide](functions-reference-python.md?pivots=python-mode-decorators#programming-model).
30-
31-
# [v1](#tab/python-v1)
32-
The Python v1 programming model requires you to define bindings in a separate *function.json* file in the function folder. For more information, see the [Python developer guide](functions-reference-python.md?pivots=python-mode-configuration#programming-model).
33-
34-
---
35-
36-
This article supports both programming models.
26+
[!INCLUDE [functions-bindings-python-models-intro](../../includes/functions-bindings-python-models-intro.md)]
3727

3828
::: zone-end
3929

articles/azure-functions/functions-bindings-cosmosdb-v2-output.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,7 @@ For information on setup and configuration details, see the [overview](./functio
1919
[!INCLUDE [functions-nodejs-model-tabs-description](../../includes/functions-nodejs-model-tabs-description.md)]
2020
::: zone-end
2121
::: zone pivot="programming-language-python"
22-
Azure Functions supports two programming models for Python. The way that you define your bindings depends on your chosen programming model.
23-
24-
# [v2](#tab/python-v2)
25-
The Python v2 programming model lets you define bindings using decorators directly in your Python function code. For more information, see the [Python developer guide](functions-reference-python.md?pivots=python-mode-decorators#programming-model).
26-
27-
# [v1](#tab/python-v1)
28-
The Python v1 programming model requires you to define bindings in a separate *function.json* file in the function folder. For more information, see the [Python developer guide](functions-reference-python.md?pivots=python-mode-configuration#programming-model).
29-
30-
---
31-
32-
This article supports both programming models.
22+
[!INCLUDE [functions-bindings-python-models-intro](../../includes/functions-bindings-python-models-intro.md)]
3323

3424
::: zone-end
3525
::: zone pivot="programming-language-csharp"

articles/azure-functions/functions-bindings-cosmosdb-v2-trigger.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,7 @@ Cosmos DB scaling decisions for the Consumption and Premium plans are done via t
2121
[!INCLUDE [functions-nodejs-model-tabs-description](../../includes/functions-nodejs-model-tabs-description.md)]
2222
::: zone-end
2323
::: zone pivot="programming-language-python"
24-
Azure Functions supports two programming models for Python. The way that you define your bindings depends on your chosen programming model.
25-
26-
# [v2](#tab/python-v2)
27-
The Python v2 programming model lets you define bindings using decorators directly in your Python function code. For more information, see the [Python developer guide](functions-reference-python.md?pivots=python-mode-decorators#programming-model).
28-
29-
# [v1](#tab/python-v1)
30-
The Python v1 programming model requires you to define bindings in a separate *function.json* file in the function folder. For more information, see the [Python developer guide](functions-reference-python.md?pivots=python-mode-configuration#programming-model).
31-
32-
---
33-
34-
This article supports both programming models.
24+
[!INCLUDE [functions-bindings-python-models-intro](../../includes/functions-bindings-python-models-intro.md)]
3525

3626
::: zone-end
3727

articles/azure-functions/functions-bindings-event-grid-output.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,7 @@ For information on setup and configuration details, see [How to work with Event
2020
[!INCLUDE [functions-nodejs-model-tabs-description](../../includes/functions-nodejs-model-tabs-description.md)]
2121
::: zone-end
2222
::: zone pivot="programming-language-python"
23-
Azure Functions supports two programming models for Python. The way that you define your bindings depends on your chosen programming model.
24-
25-
# [v2](#tab/python-v2)
26-
The Python v2 programming model lets you define bindings using decorators directly in your Python function code. For more information, see the [Python developer guide](functions-reference-python.md?pivots=python-mode-decorators#programming-model).
27-
28-
# [v1](#tab/python-v1)
29-
The Python v1 programming model requires you to define bindings in a separate *function.json* file in the function folder. For more information, see the [Python developer guide](functions-reference-python.md?pivots=python-mode-configuration#programming-model).
30-
31-
---
32-
33-
This article supports both programming models.
23+
[!INCLUDE [functions-bindings-python-models-intro](../../includes/functions-bindings-python-models-intro.md)]
3424

3525
::: zone-end
3626

articles/azure-functions/functions-bindings-event-grid-trigger.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,7 @@ Use the function trigger to respond to an event sent by an [Event Grid source](.
2020
[!INCLUDE [functions-nodejs-model-tabs-description](../../includes/functions-nodejs-model-tabs-description.md)]
2121
::: zone-end
2222
::: zone pivot="programming-language-python"
23-
Azure Functions supports two programming models for Python. The way that you define your bindings depends on your chosen programming model.
24-
25-
# [v2](#tab/python-v2)
26-
The Python v2 programming model lets you define bindings using decorators directly in your Python function code. For more information, see the [Python developer guide](functions-reference-python.md?pivots=python-mode-decorators#programming-model).
27-
28-
# [v1](#tab/python-v1)
29-
The Python v1 programming model requires you to define bindings in a separate *function.json* file in the function folder. For more information, see the [Python developer guide](functions-reference-python.md?pivots=python-mode-configuration#programming-model).
30-
31-
---
32-
33-
This article supports both programming models.
23+
[!INCLUDE [functions-bindings-python-models-intro](../../includes/functions-bindings-python-models-intro.md)]
3424

3525
::: zone-end
3626

articles/azure-functions/functions-bindings-event-hubs-output.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,7 @@ Make sure the required package references are in place before you try to impleme
2222
[!INCLUDE [functions-nodejs-model-tabs-description](../../includes/functions-nodejs-model-tabs-description.md)]
2323
::: zone-end
2424
::: zone pivot="programming-language-python"
25-
Azure Functions supports two programming models for Python. The way that you define your bindings depends on your chosen programming model.
26-
27-
# [v2](#tab/python-v2)
28-
The Python v2 programming model lets you define bindings using decorators directly in your Python function code. For more information, see the [Python developer guide](functions-reference-python.md?pivots=python-mode-decorators#programming-model).
29-
30-
# [v1](#tab/python-v1)
31-
The Python v1 programming model requires you to define bindings in a separate *function.json* file in the function folder. For more information, see the [Python developer guide](functions-reference-python.md?pivots=python-mode-configuration#programming-model).
32-
33-
---
34-
35-
This article supports both programming models.
25+
[!INCLUDE [functions-bindings-python-models-intro](../../includes/functions-bindings-python-models-intro.md)]
3626

3727
::: zone-end
3828

articles/azure-functions/functions-bindings-http-webhook-trigger.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,7 @@ For more information about HTTP bindings, see the [overview](./functions-binding
2828
[!INCLUDE [functions-nodejs-model-tabs-description](../../includes/functions-nodejs-model-tabs-description.md)]
2929
::: zone-end
3030
::: zone pivot="programming-language-python"
31-
Azure Functions supports two programming models for Python. The way that you define your bindings depends on your chosen programming model.
32-
33-
# [v2](#tab/python-v2)
34-
The Python v2 programming model lets you define bindings using decorators directly in your Python function code. For more information, see the [Python developer guide](functions-reference-python.md?pivots=python-mode-decorators#programming-model).
35-
36-
# [v1](#tab/python-v1)
37-
The Python v1 programming model requires you to define bindings in a separate *function.json* file in the function folder. For more information, see the [Python developer guide](functions-reference-python.md?pivots=python-mode-configuration#programming-model).
38-
39-
---
40-
41-
This article supports both programming models.
31+
[!INCLUDE [functions-bindings-python-models-intro](../../includes/functions-bindings-python-models-intro.md)]
4232

4333
::: zone-end
4434

articles/azure-functions/functions-bindings-service-bus-output.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,7 @@ For information on setup and configuration details, see the [overview](functions
2020
[!INCLUDE [functions-nodejs-model-tabs-description](../../includes/functions-nodejs-model-tabs-description.md)]
2121
::: zone-end
2222
::: zone pivot="programming-language-python"
23-
Azure Functions supports two programming models for Python. The way that you define your bindings depends on your chosen programming model.
24-
25-
# [v2](#tab/python-v2)
26-
The Python v2 programming model lets you define bindings using decorators directly in your Python function code. For more information, see the [Python developer guide](functions-reference-python.md?pivots=python-mode-decorators#programming-model).
27-
28-
# [v1](#tab/python-v1)
29-
The Python v1 programming model requires you to define bindings in a separate *function.json* file in the function folder. For more information, see the [Python developer guide](functions-reference-python.md?pivots=python-mode-configuration#programming-model).
30-
31-
---
32-
33-
This article supports both programming models.
34-
23+
[!INCLUDE [functions-bindings-python-models-intro](../../includes/functions-bindings-python-models-intro.md)]
3524
::: zone-end
3625

3726
## Example

0 commit comments

Comments
 (0)