Reputation: 2159
I am trying to add a new Node pool in my existing Kubernetes cluster. One of the required field is kubernetes version
. No versions show up in the dropdown and thus I can not Add a new node pool. Any idea on why this is the issue ?
Upvotes: 1
Views: 1139
Reputation: 2302
This issue happens when the Kubernetes version of the AKS cluster has been retired. You can use the following command to list the supported versions in your region.
az aks get-versions -l southeastasia -o table
You then go to the Cluster Configuration of the AKS cluster and ensure the version is supported.
Once you upgrade the cluster to a supported version the drop down will start showing the values again.
Upvotes: 1
Reputation: 1
Upvotes: 0
Reputation: 44657
This could be a bug in the UI. As an alternative use the command az aks
az aks nodepool add --cluster-name --name --resource-group --kubernetes-version --node-count
To know Kubernetes version use az aks get-versions
command
Upvotes: 3