Skip to content

Commit 4cace20

Browse files
committed
Updating doc - Standard tier is not currently available
1 parent 1fd2954 commit 4cace20

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

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

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,17 @@ 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/16/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+
> **Standard tier** is currently not available. To enable the Uptime SLA feature in your cluster, you'll use the existing **Paid tier** and the `--uptime-sla` parameter.
16+
1417
| |Free tier|Standard tier|
1518
|------------------|---------|--------|
1619
|**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|
@@ -44,27 +47,27 @@ Use the [`az aks create`][az-aks-create] command to create an AKS cluster. The c
4447
4548
az aks create --resource-group myResourceGroup --name myAKSCluster --no-uptime-sla
4649
47-
# Create a new AKS cluster in the Standard tier
50+
# Create a new AKS cluster in the Paid tier
4851
4952
az aks create --resource-group myResourceGroup --name myAKSCluster --uptime-sla
5053
```
5154

5255
Once the deployment completes, it returns JSON-formatted information about your cluster:
5356

5457
```output
55-
# Sample output for `--no-uptime-sla`
58+
# Sample output for --no-uptime-sla
5659
5760
},
5861
"sku": {
5962
"name": "Basic",
6063
"tier": "Free"
6164
},
6265
63-
# Sample output for `uptime-sla`
66+
# Sample output for uptime-sla
6467
6568
},
6669
"sku": {
67-
"name": "Basic",
70+
"name": "Base",
6871
"tier": "Paid"
6972
},
7073
```
@@ -83,12 +86,12 @@ az aks update --resource-group myResourceGroup --name myAKSCluster --no-uptime-s
8386
az aks update --resource-group myResourceGroup --name myAKSCluster --uptime-sla
8487
```
8588

86-
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.
89+
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.
8790

8891
```output
8992
},
9093
"sku": {
91-
"name": "Basic",
94+
"name": "Base",
9295
"tier": "Paid"
9396
},
9497
```

0 commit comments

Comments
 (0)