You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/free-standard-pricing-tiers.md
+16-16Lines changed: 16 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,11 +63,11 @@ Use the [`az aks create`][az-aks-create] command to create an AKS cluster. The c
63
63
```azurecli-interactive
64
64
# Create a new AKS cluster in the Free tier
65
65
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
67
67
68
68
# Create a new AKS cluster in the Standard tier
69
69
70
-
az aks create --resource-group myResourceGroup --name myAKSCluster `--uptime-sla`
70
+
az aks create --resource-group myResourceGroup --name myAKSCluster --uptime-sla
71
71
```
72
72
73
73
> [!NOTE]
@@ -76,26 +76,26 @@ az aks create --resource-group myResourceGroup --name myAKSCluster `--uptime-sla
76
76
>
77
77
> *`--tier free` will correspond to the existing `--no-uptime-sla` parameter.
78
78
> *`--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".
81
81
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:
83
83
84
84
```output
85
+
# Sample output for `--no-uptime-sla`
86
+
85
87
},
86
88
"sku": {
87
-
"name": "Base",
88
-
"tier": "Standard"
89
+
"name": "Basic",
90
+
"tier": "Free"
89
91
},
90
-
```
91
92
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`
93
94
94
-
```output
95
95
},
96
96
"sku": {
97
-
"name": "Base",
98
-
"tier": "Free"
97
+
"name": "Basic",
98
+
"tier": "Paid"
99
99
},
100
100
```
101
101
@@ -106,20 +106,20 @@ The following example uses the [`az aks update`][az-aks-update] command to updat
106
106
```azurecli-interactive
107
107
# Update an existing cluster to the Free tier
108
108
109
-
az aks update --resource-group myResourceGroup --name myAKSCluster --tier free
109
+
az aks update --resource-group myResourceGroup --name myAKSCluster --no-uptime-sla
110
110
111
111
# Update an existing cluster to the Standard tier
112
112
113
-
az aks update --resource-group myResourceGroup --name myAKSCluster --tier standard
113
+
az aks update --resource-group myResourceGroup --name myAKSCluster --uptime-sla
114
114
```
115
115
116
116
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.
0 commit comments