Home > OS >  Is there any way to change the AKS cluster tier from free to paid on CLI
Is there any way to change the AKS cluster tier from free to paid on CLI

Time:11-21

We are running AKS multi cluster environments with high uptime SLA's. We are more causious about tier of cluster where we don't know on which our clusters are running. Can anyone suggest where we can verify the current tier? Suggest where we can change that from free to paid service either in portal or CLI?

So that our clusters will get uptime SLAs. Appreciate your responses!

Azure Kubernetes Cluster tier change via CLI

CodePudding user response:

Here is the way to check the cluster price tier via Azure CLI

  1. Connect to cluster using below command

az aks get-credentials --resource-group <resourcegroup Name> --name <cluster Name>

  1. Use below command to verify the cluster tier details
az aks show -n <ClusterName> -g <ResourceGroupName> |grep tier 

enter image description here

  1. Command to change the Price Tier

az aks update --resource-group <ResourceGroupName>--name <ClusterName> --uptime-sla

enter image description here

Verify the Price tier after execution re-execute step2 command once again

az aks show -n <ClusterName> -g <ResourceGroupName> |grep tier 

enter image description here

CodePudding user response:

For AKS, u can check uptime SLAs following docs

https://learn.microsoft.com/en-us/azure/aks/uptime-sla#modify-an-existing-cluster-to-use-uptime-sla

Updating your cluster to enable the Uptime SLA does not disrupt its normal operation or impact its availability.

Hope this helps.

  • Related