Skip to content

Commit 2a47f1d

Browse files
committed
output snippet
1 parent 68bc60c commit 2a47f1d

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

articles/aks/uptime-sla.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,18 @@ Use the [az aks create][az-aks-create] command to create an AKS cluster. The fol
5050
```azurecli-interactive
5151
az aks create --resource-group myResourceGroup --name myAKSCluster --uptime-sla --node-count 1 --enable-addons monitoring --generate-ssh-keys
5252
```
53-
After a few minutes, the command completes and returns JSON-formatted information about the cluster.
53+
After a few minutes, the command completes and returns JSON-formatted information about the cluster. The following JSON snippet shows the paid tier for the SKU, indicating your cluster is enabled with Uptime SLA.
54+
55+
```output
56+
},
57+
"sku": {
58+
"name": "Basic",
59+
"tier": "Paid"
60+
},
61+
"tags": null,
62+
"type": "Microsoft.ContainerService/ManagedClusters",
63+
"windowsProfile": null
64+
```
5465

5566
## Limitations
5667

0 commit comments

Comments
 (0)