Skip to content

Commit 555a68f

Browse files
committed
Incorporating feedback
1 parent 45079e5 commit 555a68f

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

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

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ Use the [`az aks create`][az-aks-create] command to create an AKS cluster. The c
6363
```azurecli-interactive
6464
# Create a new AKS cluster in the Free tier
6565
66-
az aks create --resource-group myResourceGroup --name myAKSCluster --no-uptime-sla --node-count 1
66+
az aks create --resource-group myResourceGroup --name myAKSCluster --no-uptime-sla
6767
6868
# Create a new AKS cluster in the Standard tier
6969
70-
az aks create --resource-group myResourceGroup --name myAKSCluster `--uptime-sla`
70+
az aks create --resource-group myResourceGroup --name myAKSCluster --uptime-sla
7171
```
7272

7373
> [!NOTE]
@@ -76,26 +76,26 @@ az aks create --resource-group myResourceGroup --name myAKSCluster `--uptime-sla
7676
>
7777
> * `--tier free` will correspond to the existing `--no-uptime-sla` parameter.
7878
> * `--tier standard` will correspond to the existing `--uptime-sla` parameter.
79-
> * The CLI output will correspond to API properties: "Base" for ManagedClusterSKUName and "Free" or "Standard" for ManagerClusterSKUTier.
80-
>
79+
> * The CLI output "Basic" for ManagedClusterSKUName will correspond to the API property: "Base".
80+
> * The CLI output "Free" or "Paid" for ManagerClusterSKUTier will correspond to the API properties: "Free" or "Standard".
8181
82-
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.
82+
Once the deployment completes, it returns JSON-formatted information about your cluster:
8383

8484
```output
85+
# Sample output for `--no-uptime-sla`
86+
8587
},
8688
"sku": {
87-
"name": "Base",
88-
"tier": "Standard"
89+
"name": "Basic",
90+
"tier": "Free"
8991
},
90-
```
9192
92-
The following example output of the JSON snippet shows the *Free tier* for the SKU, indicating your cluster is in the *Free tier* and enabled with Uptime SLA.
93+
# Sample output for `uptime-sla`
9394
94-
```output
9595
},
9696
"sku": {
97-
"name": "Base",
98-
"tier": "Free"
97+
"name": "Basic",
98+
"tier": "Paid"
9999
},
100100
```
101101

@@ -106,20 +106,20 @@ The following example uses the [`az aks update`][az-aks-update] command to updat
106106
```azurecli-interactive
107107
# Update an existing cluster to the Free tier
108108
109-
az aks update --resource-group myResourceGroup --name myAKSCluster --tier free
109+
az aks update --resource-group myResourceGroup --name myAKSCluster --no-uptime-sla
110110
111111
# Update an existing cluster to the Standard tier
112112
113-
az aks update --resource-group myResourceGroup --name myAKSCluster --tier standard
113+
az aks update --resource-group myResourceGroup --name myAKSCluster --uptime-sla
114114
```
115115

116116
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.
117117

118118
```output
119119
},
120120
"sku": {
121-
"name": "Base",
122-
"tier": "Standard"
121+
"name": "Basic",
122+
"tier": "Paid"
123123
},
124124
```
125125

0 commit comments

Comments
 (0)