Hi Nagaraj KV
Try creating AKS in East US or Central India with 1-node Standard_B2s.
Also try using Az CLI
az group create --name my-test-rg --location southindia
az aks create \
--resource-group my-test-rg \
--name myAksTest \
--node-count 1 \
--enable-addons monitoring \
--generate-ssh-keys \
--node-vm-size Standard_B2s
If this fails, the output will give you the error.
Even if previously registered, providers can become unregistered due to subscription changes. Run:
az provider show --namespace Microsoft.Compute --query "registrationState"
az provider show --namespace Microsoft.ContainerService --query "registrationState"
If either show "NotRegistered"
, then re-register it using below cmds:
az provider register --namespace Microsoft.Compute
az provider register --namespace Microsoft.ContainerService
Additional References:
https://learn.microsoft.com/en-us/troubleshoot/azure/azure-kubernetes/create-upgrade-delete/aks-at-scale-troubleshoot-guide
Hope this helps!
Please Let me know if you have any queries.