Skip to content

Commit b64008b

Browse files
committed
more tweaks
1 parent 6150c0f commit b64008b

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

articles/container-apps/revisions.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Azure Container Apps implements container app versioning by creating revisions.
1717
- The first revision is automatically created when you deploy your container app.
1818
- New revisions are automatically created when you make a [*revision-scope*](#revision-scope-changes) change to your container app.
1919
- While revisions are immutable, they're affected by [*application-scope*](#application-scope-changes) changes, which apply to all revisions.
20-
- Up to 100 revisions are retained giving you a historical record of your container app updates.
20+
- You can retain up to 100 revisions, giving you a historical record of your container app updates.
2121
- You can run multiple revisions concurrently.
2222
- You can split external HTTP traffic between active revisions.
2323

@@ -26,7 +26,7 @@ Azure Container Apps implements container app versioning by creating revisions.
2626

2727
## Use cases
2828

29-
Container Apps revisions help you manage the release of updates to your container app by creating a new revision each time you make a *revision-scope* change to your app. You can control which revisions are active, and when external HTTP ingress is enabled, control the traffic that is routed to each active revision.
29+
Container Apps revisions help you manage the release of updates to your container app by creating a new revision each time you make a *revision-scope* change to your app. You can control which revisions are active, and the external traffic that is routed to each active revision.
3030

3131
You can use revisions to:
3232

@@ -42,11 +42,11 @@ The following diagram shows a container app with two revisions.
4242
The scenario shown above presumes the container app is in the following state:
4343

4444
- [Ingress](ingress.md) is enabled, making the container app available via HTTP.
45-
- The first revision is deployed as _Revision 1_.
45+
- The first revision was deployed as _Revision 1_.
4646
- After the container was updated, a new revision was activated as _Revision 2_.
4747
- [Traffic splitting](revisions-manage.md#traffic-splitting) rules are configured so that _Revision 1_ receives 80% of the requests, and _Revision 2_ receives the remaining 20%.
4848

49-
## Revision suffix
49+
## Revision name suffix
5050

5151
Revision names are used to identify a revision, and in the revision's URL. You can customize the revision name by setting the revision suffix.
5252

@@ -72,9 +72,9 @@ A new revision is created when a container app is updated with *revision-scope*
7272

7373
A *revision-scope* change is any change to the parameters in the [`properties.template`](azure-resource-manager-api-spec.md#propertiestemplate) section of the container app resource template.
7474

75-
These changes include modifications to:
75+
These parameters include:
7676

77-
- [Revision suffix](#revision-suffix)
77+
- [Revision suffix](#revision-name-suffix)
7878
- Container configuration and images
7979
- Scale rules for the container application
8080

@@ -89,8 +89,8 @@ When you deploy a container app with *application-scope* changes:
8989

9090
These parameters include:
9191

92-
- [Secret values](manage-secrets.md) (Revisions must be [restarted](revisions.md) before a container recognizes new secret values.)
93-
- Revision mode
92+
- [Secret values](manage-secrets.md) (revisions must be restarted before a container recognizes new secret values)
93+
- [Revision mode](#revision-modes)
9494
- Ingress configuration including:
9595
- Turning [ingress](ingress.md) on or off
9696
- [Traffic splitting rules](revisions-manage.md#traffic-splitting)
@@ -105,7 +105,7 @@ The revision mode controls whether only a single revision or multiple revisions
105105

106106
### Single revision mode
107107

108-
By default, a container app is in *single revision mode*. In this mode, only one revision is active at a time. When a new revision is created in this mode, the latest revision replaces the active revision.
108+
By default, a container app is in *single revision mode*. In this mode, only one revision is active at a time. When a new revision is created, the latest revision replaces the active revision.
109109

110110
### Multiple revision mode
111111

@@ -125,7 +125,7 @@ For container apps with external HTTP traffic, labels are a portable means to di
125125

126126
Labels are useful for testing new revisions. For example, when you want to give access to a set of test users, you can give them the label's URL. Then when you want to move your users to a different revision, you can move the label to that revision.
127127

128-
Labels work independently of traffic splitting. Traffic splitting distributes traffic going to the container app's application URL to revisions based on the percentage of traffic. While traffic directed to a label's URL is routed to one specific revision.
128+
Labels work independently of traffic splitting. Traffic splitting distributes traffic going to the container app's application URL to revisions based on the percentage of traffic. When traffic is directed to a label's URL, the traffic is routed to one specific revision.
129129

130130
A label name must:
131131

0 commit comments

Comments
 (0)