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
@@ -20,8 +20,7 @@ Azure Kubernetes Service (AKS) is now offering two pricing tiers for control pla
20
20
21
21
You can still create an unlimited number of free clusters with a service level objective (SLO) of 99.5% and opt for the preferred SLO.
22
22
23
-
> [!IMPORTANT]
24
-
> For clusters with egress lockdown, see [limit egress traffic](limit-egress-traffic.md) to open appropriate ports.
23
+
For clusters with egress lockdown, see [limit egress traffic](limit-egress-traffic.md) to open appropriate ports.
25
24
26
25
## Uptime SLA
27
26
@@ -46,9 +45,9 @@ The Uptime SLA feature is included in the Standard tier and is enabled per clust
46
45
47
46
## Creating a new cluster in the Free tier or Standard tier
48
47
49
-
Use the Azure CLI to create a new cluster in the Free tier or Standard tier. You can create your cluster in an existing resource group or create a new one. To learn more about resource groups and working with them, see [managing resource groups using the Azure CLI][manage-resource-group-cli].
48
+
Use the Azure CLI to create a new cluster in the *Free tier* or *Standard tier*. You can create your cluster in an existing resource group or create a new one. To learn more about resource groups and working with them, see [managing resource groups using the Azure CLI][manage-resource-group-cli].
50
49
51
-
Use the [`az aks create`][az-aks-create] command to create an AKS cluster. The commands below show you how to create a new resource group named *myResourceGroup* and a cluster named *myAKSCluster* in that resource group - one in the Free tier and one in the Standard tier.
50
+
Use the [`az aks create`][az-aks-create] command to create an AKS cluster. The commands below show you how to create a new resource group named *myResourceGroup* and a cluster named *myAKSCluster* in that resource group - one in the *Free tier* and one in the *Standard tier*.
52
51
53
52
```azurecli-interactive
54
53
az aks create --resource-group myResourceGroup --name myAKSCluster --tier standard --node-count 1
@@ -57,9 +56,10 @@ az aks create --resource-group myResourceGroup --name myAKSCluster --tier free
57
56
58
57
> [!NOTE]
59
58
>
60
-
> The `--tier standard` parameter corresponds to the existing `--uptime-sla` parameter. The `--tier free` parameter corresponds to the existing `--no-uptime-sla` parameter.
59
+
> *`--tier standard` corresponds to the existing `--uptime-sla` parameter.
60
+
> *`--tier free` corresponds to the existing `--no-uptime-sla` parameter.
61
61
62
-
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:
62
+
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.
63
63
64
64
```output
65
65
},
@@ -76,14 +76,14 @@ You can update your existing clusters to use Uptime SLA.
76
76
> [!NOTE]
77
77
> Updating your cluster to enable the Uptime SLA does not disrupt its normal operation or impact its availability.
78
78
79
-
The following example uses the [`az aks update`][az-aks-update] command to update the existing cluster:
79
+
The following example uses the [`az aks update`][az-aks-update] command to update the existing cluster.
80
80
81
81
```azurecli-interactive
82
82
# Update an existing cluster to use Uptime SLA
83
83
az aks update --resource-group myResourceGroup --name myAKSCluster --uptime-sla
84
84
```
85
85
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:
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.
0 commit comments