Skip to content

Commit 6e04f17

Browse files
authored
editorial changes
1 parent 70ca670 commit 6e04f17

File tree

1 file changed

+18
-24
lines changed

1 file changed

+18
-24
lines changed

support/azure/azure-kubernetes/error-codes/availabilityzonenotsupported-error.md

Lines changed: 18 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Troubleshoot AvailabilityZoneNotSupported Error Code
33
description: Learn how to troubleshoot the AvailabilityZoneNotSupported error when you try to create an Azure Kubernetes Service cluster in a set of zones.
4-
ms.date: 05/28/2025
4+
ms.date: 05/30/2025
55
ms.reviewer: marcha, skuchipudi, v-weizhu
66
ms.service: azure-kubernetes-service
77
ms.custom: sap:Create, Upgrade, Scale and Delete operations (cluster or nodepool)
@@ -23,23 +23,31 @@ An AKS cluster creation fails in specified availability zones and you receive an
2323
2424
## Cause
2525

26-
The issue occurs because the requested SKU is unavailable in the specified zones or is restricted by the Azure subscription.
26+
The issue occurs because the requested SKU has restrictions in some or all zones for your subscription. To verify the restrictions, go to the [Verify SKU restrictions](#verify-sku-restrictions) section.
2727

28-
To determine the root cauese, perform one or two actions below:
28+
## Solution
2929

30-
- To verify if the requested SKU is restricted by your subscription, run the following command:
30+
To resolve this issue, request access to the specified region or zone by following the [Azure region access request process](../../general/region-access-request-process.md).
31+
32+
## Verify SKU restrictions
33+
34+
1. List SKU details by running one of the following commands:
3135

36+
```azurecli
37+
az vm list-skus -l <location> --size <SKU>
38+
```
39+
3240
```azurecli
3341
az rest --method get \
3442
--url "https://management.azure.com/subscriptions/<subscription>/providers/Microsoft.Compute/skus?%24filter=location+eq+%27<location>%27&api-version=2022-03-01" >> availableSkus.txt
3543
```
36-
44+
3745
> [!NOTE]
38-
> Replace `<subscription>` and `<locaiton>` accordingly.
39-
40-
Then, search for the requested SKU in the *availableSkus.txt* file. If you see the lines like the following, it indicates that your subscription doesn't have access to zones in the specified location:
46+
> Replace `<subscription>`, <SKU>, and `<locaiton>` accordingly.
47+
2. Search for the requested SKU from the command output.
48+
3. If you see the information like the following, it indicates that the requested SKU has restrictions in some or all zones for your subscription:
4149
42-
```output
50+
```json
4351
"restrictions": [
4452
{
4553
"type": "Zone",
@@ -60,18 +68,4 @@ To determine the root cauese, perform one or two actions below:
6068
}
6169
]
6270
```
63-
64-
- To verify if the requested SKU isn't available in the specified zones, run the following command:
65-
66-
```azurecli
67-
az vm list-skus -l <location> --size <SKU>
68-
```
69-
70-
> [!NOTE]
71-
> Replace `<SKU>` and `<locaiton>` accordingly.
72-
73-
## Solution: Request access to the specified zone
74-
75-
To resolve this issue, request access to the specified region or zone by following the [Azure region access request process](../../general/region-access-request-process.md).
76-
77-
[!INCLUDE [Azure Help Support](../../../includes/azure-help-support.md)]
71+
[!INCLUDE [Azure Help Support](../../../includes/azure-help-support.md)]

0 commit comments

Comments
 (0)