Skip to content

Commit df5c5ce

Browse files
committed
Additional edits to the new Free and Standard tier AKS doc
1 parent bde2874 commit df5c5ce

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

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

Lines changed: 9 additions & 9 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/02/2022
6+
ms.date: 12/05/2022
77
ms.custom: references_regions, devx-track-azurecli
88
---
99

@@ -20,8 +20,7 @@ Azure Kubernetes Service (AKS) is now offering two pricing tiers for control pla
2020

2121
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.
2222

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.
2524

2625
## Uptime SLA
2726

@@ -46,9 +45,9 @@ The Uptime SLA feature is included in the Standard tier and is enabled per clust
4645

4746
## Creating a new cluster in the Free tier or Standard tier
4847

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].
5049

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*.
5251

5352
```azurecli-interactive
5453
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
5756

5857
> [!NOTE]
5958
>
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.
6161
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.
6363

6464
```output
6565
},
@@ -76,14 +76,14 @@ You can update your existing clusters to use Uptime SLA.
7676
> [!NOTE]
7777
> Updating your cluster to enable the Uptime SLA does not disrupt its normal operation or impact its availability.
7878
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.
8080

8181
```azurecli-interactive
8282
# Update an existing cluster to use Uptime SLA
8383
az aks update --resource-group myResourceGroup --name myAKSCluster --uptime-sla
8484
```
8585

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.
8787

8888
```output
8989
},

0 commit comments

Comments
 (0)