Skip to content

Commit 9b16e53

Browse files
committed
Freshness updates to AKS Free, Standard, and Premium pricing tiers for cluster management
1 parent ccf1bbd commit 9b16e53

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

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

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Azure Kubernetes Service (AKS) offers three pricing tiers for cluster management
1414

1515
| |Free tier|Standard tier|Premium tier|
1616
|------------------|---------|--------|
17-
|**When to use**|• You want to experiment with AKS at no extra cost <br> • You're new to AKS and Kubernetes|• You're running production or mission-critical workloads and need high availability and reliability <br> • You need a financially backed SLA |• You're running production or mission-critical workloads and need high availability and reliability <br> • You need a financially backed SLA. <br>• All mission critical, at scale, or production workloads requiring 2 years of one Kubernetes version support|
17+
|**When to use**|• You want to experiment with AKS at no extra cost <br> • You're new to AKS and Kubernetes|• You're running production or mission-critical workloads and need high availability and reliability <br> • You need a financially backed SLA |• You're running production or mission-critical workloads and need high availability and reliability <br> • You need a financially backed SLA <br>• All mission critical, at scale, or production workloads requiring *two years* of one Kubernetes version support|
1818
|**Supported cluster types**|• Development clusters or small scale testing environments <br> • Clusters with fewer than 10 nodes|• Enterprise-grade or production workloads <br> • Clusters with up to 5,000 nodes| • Enterprise-grade or production workloads <br> • Clusters with up to 5,000 nodes |
1919
|**Pricing**|• Free cluster management <br> • Pay-as-you-go for resources you consume|• Pay-as-you-go for resources you consume <br> • [Standard tier Cluster Management Pricing](https://azure.microsoft.com/pricing/details/kubernetes-service/) | • Pay-as-you-go for resources you consume <br> • [Premium tier Cluster Management Pricing](https://azure.microsoft.com/pricing/details/kubernetes-service/) |
2020
|**Feature comparison**|• Recommended for clusters with fewer than 10 nodes, but can support up to 1,000 nodes <br> • Includes all current AKS features|• Uptime SLA is enabled by default <br> • Greater cluster reliability and resources <br> • Can support up to 5,000 nodes in a cluster <br> • Includes all current AKS features | • Includes all current AKS features from standard tier <br> • [Microsoft maintenance past community support][long-term-support] |
@@ -32,37 +32,37 @@ In the Standard tier and Premium tier, the Uptime SLA feature is enabled by defa
3232

3333
## Before you begin
3434

35-
Make sure you have installed [Azure CLI](/cli/azure/install-azure-cli) version 2.47.0 or later. Run `az --version` to find your current version. If you need to install or upgrade, see [Install Azure CLI][install-azure-cli].
35+
You need [Azure CLI](/cli/azure/install-azure-cli) version 2.47.0 or later. Run `az --version` to find your current version. If you need to install or upgrade, see [Install Azure CLI][install-azure-cli].
3636

3737
## Create a new cluster and select the pricing tier
3838

3939
Use the Azure CLI to create a new cluster on an AKS pricing 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].
4040

41-
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 in each tier.
41+
Use the [`az aks create`][az-aks-create] command to create an AKS cluster. The following commands show you how to create a new cluster in the Free, Standard, and Premium tiers.
4242

4343
```azurecli-interactive
4444
# Create a new AKS cluster in the Free tier
4545
4646
az aks create \
47-
--resource-group myResourceGroup \
48-
--name myAKSCluster \
47+
--resource-group $RESOURCE_GROUP \
48+
--name $CLUSTER_NAME \
4949
--tier free \
5050
--generate-ssh-keys
5151
5252
# Create a new AKS cluster in the Standard tier
5353
5454
az aks create \
55-
--resource-group myResourceGroup \
56-
--name myAKSCluster \
55+
--resource-group $RESOURCE_GROUP \
56+
--name $CLUSTER_NAME \
5757
--tier standard \
5858
--generate-ssh-keys
5959
6060
# Create a new AKS cluster in the Premium tier
6161
# LongTermSupport and Premium tier should be enabled/disabled together
6262
6363
az aks create \
64-
--resource-group myResourceGroup \
65-
--name myAKSCluster \
64+
--resource-group $RESOURCE_GROUP \
65+
--name $CLUSTER_NAME \
6666
--tier premium \
6767
--k8s-support-plan AKSLongTermSupport \
6868
--generate-ssh-keys
@@ -103,21 +103,21 @@ The following example uses the [`az aks update`](/cli/azure/aks#az_aks_update) c
103103
```azurecli-interactive
104104
# Update an existing cluster from the Standard tier to the Free tier
105105
106-
az aks update --resource-group myResourceGroup --name myAKSCluster --tier free
106+
az aks update --resource-group $RESOURCE_GROUP --name $CLUSTER_NAME --tier free
107107
108108
# Update an existing cluster from the Free tier to the Standard tier
109109
110-
az aks update --resource-group myResourceGroup --name myAKSCluster --tier standard
110+
az aks update --resource-group $RESOURCE_GROUP --name $CLUSTER_NAME --tier standard
111111
```
112112

113-
To [update existing clusters from and to the Premium tier][long-term-support-update] it requires also the changing the support plan.
113+
[Updating existing clusters from and to the Premium tier][long-term-support-update] requires changing the support plan.
114114

115115
```azurecli-interactive
116116
# Update an existing cluster to the Premium tier
117-
az aks update --resource-group myResourceGroup --name myAKSCluster --tier premium --k8s-support-plan AKSLongTermSupport
117+
az aks update --resource-group $RESOURCE_GROUP --name $CLUSTER_NAME --tier premium --k8s-support-plan AKSLongTermSupport
118118
119119
# Update an existing cluster to from Premium tier to Free or Standard tier
120-
az aks update --resource-group myResourceGroup --name myAKSCluster --tier [free|standard] --k8s-support-plan KubernetesOfficial
120+
az aks update --resource-group $RESOURCE_GROUP --name $CLUSTER_NAME --tier [free|standard] --k8s-support-plan KubernetesOfficial
121121
```
122122

123123
This process takes several minutes to complete. You shouldn't experience any downtime while your cluster tier is being updated. When finished, the following example JSON snippet shows updating the existing cluster to the Standard tier in the Base SKU.

0 commit comments

Comments
 (0)