You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/container-apps/revisions.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ services: container-apps
5
5
author: craigshoemaker
6
6
ms.service: azure-container-apps
7
7
ms.topic: conceptual
8
-
ms.date: 02/01/2024
8
+
ms.date: 02/10/2025
9
9
ms.author: cshoe
10
10
ms.custom: build-2023
11
11
---
@@ -26,7 +26,7 @@ Key characteristics of revisions include:
26
26
27
27
-**Scoped changes**: While revisions remain static, [application-scope](#change-types) changes can affect all revisions, while [revision-scope](#change-types) changes create a new revision.
28
28
29
-
-**Historical record**: By default, you have access to 100 inactive revisions, but you can [adjust this threshold manually](#change-inactive-revision-limit).
29
+
-**Historical record**: By default, you have access to 100 inactive revisions, but you can [adjust this threshold manually](#change-inactive-revision-limit-preview).
30
30
31
31
-**Multiple revisions**: You can run multiple revisions concurrently. This feature is especially beneficial when you need to manage different versions of your app simultaneously.
32
32
@@ -65,10 +65,16 @@ After a container app is successfully provisioned, a revision enters its operati
65
65
66
66
Revisions can also enter an inactive state. These revisions don't possess provisioning or running states. However, Azure Container Apps maintains a list of these revisions, accommodating up to 100 inactive entries. You can activate a revision at any time.
67
67
68
-
### Change inactive revision limit
68
+
### Change inactive revision limit (preview)
69
69
70
70
You can use the `--max-inactive-revisions` parameter with the `containerapp create` or `containerapp update` commands to control the number of inactive revisions tracked by Container Apps.
71
71
72
+
First, make sure you have installed the Container Apps extension, with preview features enabled, for the Azure CLI:
73
+
74
+
```azurecli
75
+
az extension add --name containerapp --upgrade --allow-preview true
76
+
```
77
+
72
78
This example demonstrates how to create a new container app that tracks 50 inactive revisions:
0 commit comments