Skip to content

Commit 3e0027d

Browse files
Merge pull request #301355 from Akhilesh-microsoft/ACA/traffic_splitting
[ACA-431208: traffic_splitting: Freshness pass
2 parents 6f077fe + 120b7a0 commit 3e0027d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

articles/container-apps/traffic-splitting.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,28 +6,28 @@ author: craigshoemaker
66
ms.service: azure-container-apps
77
ms.custom: devx-track-azurecli
88
ms.topic: how-to
9-
ms.date: 03/28/2023
9+
ms.date: 06/16/2025
1010
ms.author: cshoe
1111
zone_pivot_groups: arm-azure-cli-portal
1212
---
1313

1414
# Traffic splitting in Azure Container Apps
1515

16-
By default, when ingress is enabled, all traffic is routed to the latest deployed revision. When you enable [multiple revision mode](revisions.md#revision-modes) in your container app, you can split incoming traffic between active revisions.
16+
By default, when ingress are enabled, all traffic is routed to the latest deployed revision. When you enable [multiple revision mode](revisions.md#revision-modes) in your container app, you can split incoming traffic between active revisions.
1717

18-
Traffic splitting is useful for testing updates to your container app. You can use traffic splitting to gradually phase in a new revision in [blue-green deployments](blue-green-deployment.md) or in [A/B testing](https://wikipedia.org/wiki/A/B_testing).
18+
Traffic splitting is useful for testing updates to your container app. You can use traffic splitting to gradually phase in a new revision in [blue-green deployments](blue-green-deployment.md) or in [A/B testing](https://wikipedia.org/wiki/A/B_testing).
1919

20-
Traffic splitting is based on the weight (percentage) of traffic that is routed to each revision. The combined weight of all traffic split rules must equal 100%. You can specify revision by revision name or [revision label](revisions.md#labels).
20+
Traffic splitting is based on the weight (percentage) of traffic that is routed to each revision. The combined weight of all traffic split rules must equal 100%. You can specify revision by revision name or [revision label](revisions.md#labels).
2121

2222
This article shows you how to configure traffic splitting rules for your container app.
23-
To run the following examples, you need a container app with multiple revisions.
23+
To run the following examples, you need a container app with multiple revisions.
2424

2525

2626
## Configure traffic splitting
2727

2828
::: zone pivot="azure-cli"
2929

30-
Configure traffic splitting between revisions using the [`az containerapp ingress traffic set`](/cli/azure/containerapp/revision#az-containerapp-ingress-traffic-set) command. You can specify the revisions by name with the `--revision-weight` parameter or by revision label with the `--label-weight` parameter.
30+
Configure traffic splitting between revisions using the [`az containerapp ingress traffic set`](/cli/azure/containerapp/revision#az-containerapp-ingress-traffic-set) command. You can specify the revisions by name with the `--revision-weight` parameter or by revision label with the `--label-weight` parameter.
3131

3232
The following command sets the traffic weight for each revision to 50%:
3333

@@ -79,7 +79,7 @@ az containerapp ingress traffic set \
7979

8080
::: zone pivot="azure-resource-manager"
8181

82-
Enable traffic splitting by adding the `configuration.ingress.traffic` properties to the `ingress` section of your container app template. You can specify the revisions by name with the `revisionName` property or by revision label with the `label` property.
82+
Enable traffic splitting by adding the `configuration.ingress.traffic` properties to the `ingress` section of your container app template. You can specify the revisions by name with the `revisionName` property or by revision label with the `label` property.
8383

8484
The following example sets 100% of traffic to the latest deployed revision:
8585

@@ -153,7 +153,7 @@ The following example shows traffic splitting between two revisions by label:
153153

154154
## Use cases
155155

156-
The following scenarios describe configuration settings for common use cases. The examples are shown in JSON format, but you can also use the Azure portal or Azure CLI to configure traffic splitting.
156+
The following scenarios describe configuration settings for common use cases. The examples are shown in JSON format, but you can also use the Azure portal or Azure CLI to configure traffic splitting.
157157

158158
### Rapid iteration
159159

0 commit comments

Comments
 (0)