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
- Connect to cluster using below command
az aks get-credentials --resource-group <resourcegroup Name> --name <cluster Name>
- Use below command to verify the cluster tier details
az aks show -n <ClusterName> -g <ResourceGroupName> |grep tier
- Command to change the Price Tier
az aks update --resource-group <ResourceGroupName>--name <ClusterName> --uptime-sla
Verify the Price tier after execution re-execute step2 command once again
az aks show -n <ClusterName> -g <ResourceGroupName> |grep tier
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.