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/reliability/reliability-containers.md
+13-11Lines changed: 13 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,8 @@ Azure Container Instances supports *zonal* container group deployments, meaning
34
34
> [!IMPORTANT]
35
35
> This feature is currently not available for Azure portal.
36
36
37
-
- Zonal container group deployments are supported in most regions where ACI is available for Linux and Windows Server 2019 container groups. For details, see [Regions and resource availability][container-regions].
37
+
- Zonal container group deployments are supported in most regions where ACI is available for Linux and Windows Server 2019 container groups. For details, see [Regions and resource availability](/azure/container-instances/container-instances-region-availability).
38
+
38
39
- Availability zone support is only available on ACI API version 09-01-2021 or later.
39
40
- For Azure CLI, version 2.30.0 or later must be installed.
40
41
- For PowerShell, version 2.1.1-preview or later must be installed.
@@ -54,8 +55,12 @@ To change your container group's availability zone, you must delete the containe
54
55
55
56
### Create a resource with availability zone enabled
56
57
58
+
To create a Container Instance resource with availability zone enabled, you'll need to deploy a container group using an Azure Resource Manager (ARM) template.
59
+
60
+
>[!NOTE]
61
+
>Examples in this article are formatted for the Bash shell. If you prefer another shell, adjust the line continuation characters accordingly.
57
62
58
-
#### Deploy a container group using an Azure Resource Manager (ARM) template
63
+
**To deploy a container with ARM:**
59
64
60
65
1. Copy-paste the following JSON into a new file named `azuredeploy.json`. This example template deploys a container group with a single container into availability zone 1 in East US.
61
66
@@ -193,14 +198,11 @@ To change your container group's availability zone, you must delete the containe
193
198
--resource-group myResourceGroup \
194
199
--template-file azuredeploy.json
195
200
```
196
-
197
-
## Get container group details
198
-
199
-
To verify the container group deployed successfully into an availability zone, view the container group details with the [az container show][az-container-show] command:
200
-
201
-
```azurecli
202
-
az containershow --name acilinuxcontainergroup --resource-group myResourceGroup
203
-
```
201
+
4. To verify the container group deployed successfully into an availability zone, view the container group details with the [az container show][az-container-show] command:
202
+
203
+
```azurecli
204
+
az containershow --name acilinuxcontainergroup --resource-group myResourceGroup
205
+
```
204
206
205
207
### Zonal failover support
206
208
@@ -218,7 +220,7 @@ When an entire Azure region or datacenter experiences downtime, your mission-cri
218
220
## Next steps
219
221
220
222
> [!div class="nextstepaction"]
221
-
> [Azure Cache for Redis Premium service tiers](../container-instances/availability-zones.md#next-steps)
223
+
[Azure Architecture Center's guide on availability zones](/azure/architecture/high-availability/building-solutions-for-high-availability).
0 commit comments