Skip to content

Commit 7de84e7

Browse files
committed
Incorporating feedback into doc
1 parent c8092a4 commit 7de84e7

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

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

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Azure Kubernetes Service (AKS) Free and Standard pricing tiers for contro
33
description: Learn about the Azure Kubernetes Service (AKS) Free and Standard pricing tiers for control plane management
44
services: container-service
55
ms.topic: conceptual
6-
ms.date: 12/05/2022
6+
ms.date: 01/20/2023
77
ms.custom: references_regions, devx-track-azurecli
88
---
99

@@ -66,17 +66,21 @@ Use the [`az aks create`][az-aks-create] command to create an AKS cluster. The c
6666
```azurecli-interactive
6767
# Create a new AKS cluster in the Free tier
6868
69-
az aks create --resource-group myResourceGroup --name myAKSCluster --tier free --node-count 1
69+
az aks create --resource-group myResourceGroup --name myAKSCluster --no-uptime-sla --node-count 1
7070
7171
# Create a new AKS cluster in the Standard tier
7272
73-
az aks create --resource-group myResourceGroup --name myAKSCluster --tier standard
73+
az aks create --resource-group myResourceGroup --name myAKSCluster `--uptime-sla`
7474
```
7575

7676
> [!NOTE]
7777
>
78-
> * `--tier free` corresponds to the existing `--no-uptime-sla` parameter.
79-
> * `--tier standard` corresponds to the existing `--uptime-sla` parameter.
78+
> 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:
79+
>
80+
> * `--tier free` will correspond to the existing `--no-uptime-sla` parameter.
81+
> * `--tier standard` will correspond to the existing `--uptime-sla` parameter.
82+
> * The CLI output will correspond to API properties: "Base" for ManagedClusterSKUName and "Free" or "Standard" for ManagerClusterSKUTier.
83+
>
8084
8185
Once the deployment completes, it returns JSON-formatted information about your cluster. The following example output of the JSON snippet shows the *Standard tier* for the SKU, indicating your cluster is in the *Standard tier* and enabled with Uptime SLA.
8286

0 commit comments

Comments
 (0)