Vikram Giriraj
Vikram Giriraj

Reputation: 3

AKS Cluster upgrade is failing

I am trying to upgrade my cluster from v1.23.9 to v1.24.10. Azure asks me to apply Service Principle, which again requires me to enable manage identity. When I try to enable manage identity, it automatically starts cluster upgrade and the upgrade fails. I'm stuck in this loop.

I have checked all the settings and configurations in the Azure Portal, but I am unable to find a solution.

Upvotes: 0

Views: 1011

Answers (1)

HowAreYou
HowAreYou

Reputation: 871

To upgrade, firstly check available versions in AKS cluster hosted location using the below command.

az aks get-versions --location eastus

enter image description here

Next , use az aks upgrade command, to upgrade the kubernetes cluster.

az aks upgrade --resource-group <resource-group-name> --name <aks-cluster-name> --kubernetes-version <version-number>

enter image description here

Now verify the AKS version under properties session. enter image description here

Upvotes: 0

Related Questions