Skip to content

Commit 74863ab

Browse files
Merge pull request #227690 from schaffererin/update-standard-tier
Update doc - pricing tier is currently unavailable due to bug
2 parents 84b2027 + 79878bc commit 74863ab

File tree

1 file changed

+19
-37
lines changed

1 file changed

+19
-37
lines changed

articles/aks/free-standard-pricing-tiers.md

Lines changed: 19 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,20 @@ title: Azure Kubernetes Service (AKS) Free and Standard pricing tiers for cluste
33
description: Learn about the Azure Kubernetes Service (AKS) Free and Standard pricing tiers for cluster management
44
services: container-service
55
ms.topic: conceptual
6-
ms.date: 01/20/2023
6+
ms.date: 02/17/2023
77
ms.custom: references_regions, devx-track-azurecli
88
---
99

1010
# Free and Standard pricing tiers for Azure Kubernetes Service (AKS) cluster management
1111

1212
Azure Kubernetes Service (AKS) is now offering two pricing tiers for cluster management: the **Free tier** and the **Standard tier**.
1313

14+
> [!IMPORTANT]
15+
>
16+
> **Standard tier** is currently not available in Azure API 2023-01-01 due to a [critical bug](https://github.com/Azure/AKS/issues/3481). To enable the Uptime SLA feature in your cluster, you'll use the existing **Paid tier** and the `--uptime-sla` parameter.
17+
>
18+
> Alternatively, you can select the **Standard tier** or **Free tier** on Azure portal when creating or updating an AKS cluster.
19+
1420
| |Free tier|Standard tier|
1521
|------------------|---------|--------|
1622
|**When to use**|• You want to experiment with AKS at no extra cost <br> • You're new to AKS and Kubernetes|• You're running production or mission-critical workloads and need high availability and reliability <br> • You need a financially backed SLA|
@@ -20,27 +26,9 @@ Azure Kubernetes Service (AKS) is now offering two pricing tiers for cluster man
2026

2127
For more information on pricing, see the [AKS pricing details](https://azure.microsoft.com/pricing/details/kubernetes-service/).
2228

23-
## Uptime SLA
24-
25-
> [!IMPORTANT]
26-
>
27-
> Uptime SLA has been repositioned as a default feature included with the Standard tier.
28-
>
29-
> The repositioning will result in the following API changes:
30-
>
31-
> | |Prior to 2023-01-01 API|Starting from 2023-01-01 API| Starting from 2023-07-01 API|
32-
> |----------|-----------|------------|------------|
33-
> |ManagedClusterSKUName|"Basic"|"Basic" <br> "Base"|"Base"|
34-
> |ManagedClusterSKUTier|"Free" <br> "Paid"|"Free" <br> "Paid" <br> "Standard"|"Free" <br> "Standard"|
35-
>
36-
> "Basic" and "Paid" will be removed in the 2023-07-01 API version, and this will be a breaking change in API version 2023-07-01 or newer. If you use automated scripts, CD pipelines, ARM templates, Terraform, or other third-party tooling that relies on the above parameters, please be sure to make the necessary changes before upgrading to the 2023-07-01 or newer API version. From API version 2023-01-01 and newer, you can start transitioning to the new API parameters "Base" and "Standard".
37-
>
38-
39-
For more information, see [SLA for AKS](https://azure.microsoft.com/support/legal/sla/kubernetes-service/v1_1/).
40-
41-
### Uptime SLA terms and conditions
29+
## Uptime SLA terms and conditions
4230

43-
The Uptime SLA feature is included in the Standard tier and is enabled per cluster. For more information on pricing, see the [AKS pricing details](https://azure.microsoft.com/pricing/details/kubernetes-service/).
31+
The Uptime SLA feature is included in the Paid tier and is enabled per cluster. For more information on pricing, see the [AKS pricing details](https://azure.microsoft.com/pricing/details/kubernetes-service/).
4432

4533
## Region availability
4634

@@ -51,7 +39,10 @@ The Uptime SLA feature is included in the Standard tier and is enabled per clust
5139

5240
[Azure CLI](/cli/azure/install-azure-cli) version 2.8.0 or later and configured. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI][install-azure-cli].
5341

54-
## Creating a new cluster in the Free tier or Standard tier
42+
## Create a new cluster in the Free tier or Paid tier
43+
44+
> [!IMPORTANT]
45+
> `--tier standard` and `--tier free` are currently unavailable in Azure CLI 2.46.0 due to a [critical bug](https://github.com/Azure/AKS/issues/3481). To enable the Uptime SLA feature, use the commands below.
5546
5647
Use the Azure CLI to create a new cluster on an AKS pricing tier. You can create your cluster in an existing resource group or create a new one. To learn more about resource groups and working with them, see [managing resource groups using the Azure CLI][manage-resource-group-cli].
5748

@@ -62,36 +53,27 @@ Use the [`az aks create`][az-aks-create] command to create an AKS cluster. The c
6253
6354
az aks create --resource-group myResourceGroup --name myAKSCluster --no-uptime-sla
6455
65-
# Create a new AKS cluster in the Standard tier
56+
# Create a new AKS cluster in the Paid tier
6657
6758
az aks create --resource-group myResourceGroup --name myAKSCluster --uptime-sla
6859
```
6960

70-
> [!NOTE]
71-
>
72-
> The outputs to `--no-uptime-sla` and `--uptime-sla` correspond to API properties prior to the 2023-01-01 API version. Starting in Azure CLI 2.46.0:
73-
>
74-
> * `--tier free` will correspond to the existing `--no-uptime-sla` parameter.
75-
> * `--tier standard` will correspond to the existing `--uptime-sla` parameter.
76-
> * The CLI output "Basic" for ManagedClusterSKUName will correspond to the API property: "Base".
77-
> * The CLI output "Free" or "Paid" for ManagerClusterSKUTier will correspond to the API properties: "Free" or "Standard".
78-
7961
Once the deployment completes, it returns JSON-formatted information about your cluster:
8062

8163
```output
82-
# Sample output for `--no-uptime-sla`
64+
# Sample output for --no-uptime-sla
8365
8466
},
8567
"sku": {
8668
"name": "Basic",
8769
"tier": "Free"
8870
},
8971
90-
# Sample output for `uptime-sla`
72+
# Sample output for --uptime-sla
9173
9274
},
9375
"sku": {
94-
"name": "Basic",
76+
"name": "Base",
9577
"tier": "Paid"
9678
},
9779
```
@@ -110,12 +92,12 @@ az aks update --resource-group myResourceGroup --name myAKSCluster --no-uptime-s
11092
az aks update --resource-group myResourceGroup --name myAKSCluster --uptime-sla
11193
```
11294

113-
This process takes several minutes to complete. When finished, the following example JSON snippet shows the paid tier for the SKU, indicating your cluster is enabled with Uptime SLA.
95+
This process takes several minutes to complete. When finished, the following example JSON snippet shows the Paid tier for the SKU, indicating your cluster is enabled with Uptime SLA.
11496

11597
```output
11698
},
11799
"sku": {
118-
"name": "Basic",
100+
"name": "Base",
119101
"tier": "Paid"
120102
},
121103
```

0 commit comments

Comments
 (0)