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
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ Azure Kubernetes Service (AKS) offers three pricing tiers for cluster management
14
14
15
15
||Free tier|Standard tier|Premium tier|
16
16
|------------------|---------|--------|
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|
18
18
|**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 |
19
19
|**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/)|
20
20
|**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
32
32
33
33
## Before you begin
34
34
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].
36
36
37
37
## Create a new cluster and select the pricing tier
38
38
39
39
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].
40
40
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.
42
42
43
43
```azurecli-interactive
44
44
# Create a new AKS cluster in the Free tier
45
45
46
46
az aks create \
47
-
--resource-group myResourceGroup \
48
-
--name myAKSCluster \
47
+
--resource-group $RESOURCE_GROUP \
48
+
--name $CLUSTER_NAME \
49
49
--tier free \
50
50
--generate-ssh-keys
51
51
52
52
# Create a new AKS cluster in the Standard tier
53
53
54
54
az aks create \
55
-
--resource-group myResourceGroup \
56
-
--name myAKSCluster \
55
+
--resource-group $RESOURCE_GROUP \
56
+
--name $CLUSTER_NAME \
57
57
--tier standard \
58
58
--generate-ssh-keys
59
59
60
60
# Create a new AKS cluster in the Premium tier
61
61
# LongTermSupport and Premium tier should be enabled/disabled together
62
62
63
63
az aks create \
64
-
--resource-group myResourceGroup \
65
-
--name myAKSCluster \
64
+
--resource-group $RESOURCE_GROUP \
65
+
--name $CLUSTER_NAME \
66
66
--tier premium \
67
67
--k8s-support-plan AKSLongTermSupport \
68
68
--generate-ssh-keys
@@ -103,21 +103,21 @@ The following example uses the [`az aks update`](/cli/azure/aks#az_aks_update) c
103
103
```azurecli-interactive
104
104
# Update an existing cluster from the Standard tier to the Free tier
105
105
106
-
az aks update --resource-group myResourceGroup --name myAKSCluster --tier free
106
+
az aks update --resource-group $RESOURCE_GROUP --name $CLUSTER_NAME --tier free
107
107
108
108
# Update an existing cluster from the Free tier to the Standard tier
109
109
110
-
az aks update --resource-group myResourceGroup --name myAKSCluster --tier standard
110
+
az aks update --resource-group $RESOURCE_GROUP --name $CLUSTER_NAME --tier standard
111
111
```
112
112
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.
114
114
115
115
```azurecli-interactive
116
116
# 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
118
118
119
119
# 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
121
121
```
122
122
123
123
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