Skip to content

Commit 16687bc

Browse files
committed
Resolved blocking issues
1 parent ff9e420 commit 16687bc

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

articles/aks/availability-zones-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Availability zones help protect your applications and data from datacenter failu
2020

2121
AKS clusters deployed using availability zones can distribute nodes across multiple zones within a single region. For example, a cluster in the *East US 2* region can create nodes in all three availability zones in *East US 2*. This distribution of AKS cluster resources improves cluster availability as they're resilient to failure of a specific zone.
2222

23-
![AKS node distribution across availability zones](media/availability-zones/aks-availability-zones.png)
23+
![Diagram that shows AKS node distribution across availability zones.](media/availability-zones/aks-availability-zones.png)
2424

2525
If a single zone becomes unavailable, your applications continue to run on clusters configured to spread across multiple zones.
2626

articles/aks/availability-zones.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This article shows you how to create an AKS cluster and distribute the node comp
2222
Keep the following details in mind when creating an AKS cluster with availability zones using an Azure Resource Manager template:
2323

2424
* If you explicitly define a [null value in a template][arm-template-null], for example, `"availabilityZones": null`, the template treats the property as if it doesn't exist. This means your cluster doesn't deploy in an availability zone.
25-
* If you don't include the `"availabilityZones":` property the template, your cluster doesn't deploy in an availability zone.
25+
* If you don't include the `"availabilityZones":` property in the template, your cluster doesn't deploy in an availability zone.
2626
* You can't update settings for availability zones on an existing cluster, as the behavior is different when you update an AKS cluster with Azure Resource Manager templates. If you explicitly set a null value in your template for availability zones and *update* your cluster, it doesn't update your cluster for availability zones. However, if you omit the availability zones property with syntax such as `"availabilityZones": []`, the deployment attempts to disable availability zones on your existing AKS cluster and **fails**.
2727

2828
## Create an AKS cluster across availability zones
@@ -104,12 +104,12 @@ As documented in [Well-Known Labels, Annotations and Taints][kubectl-well_known_
104104

105105
1. Scale your AKS cluster from *3* to *5* nodes using the [`az aks scale`][az-aks-scale] command with the `--node-count` set to `5`.
106106

107-
```azurecli-interactive
108-
az aks scale \
109-
--resource-group $RESOURCE_GROUP \
110-
--name $CLUSTER_NAME \
111-
--node-count 5
112-
```
107+
```azurecli-interactive
108+
az aks scale \
109+
--resource-group $RESOURCE_GROUP \
110+
--name $CLUSTER_NAME \
111+
--node-count 5
112+
```
113113
114114
2. When the scale operation completes, verify the pod distribution across the zones using the following [`kubectl describe`][kubectl-describe] command:
115115

0 commit comments

Comments
 (0)