Troubleshoot cluster upgrading and scaling errors
This article discusses how to troubleshoot errors that occur when you try to upgrade or scale a Microsoft Azure Kubernetes Service (AKS) cluster.
Some causes of failure when you try to upgrade or scale an AKS cluster are as follows.
Cause 1: Cluster is in a failed state
If a cluster is in a failed
state, upgrade
or scale
operations won't succeed. A cluster can enter a failed state for many reasons.
Here are the most common reasons and corresponding solutions:
Scaling while having an insufficient Compute Resource Provider (CRP) quota.
To resolve this issue, increase your resource quota before you scale by following these steps:
Scale your cluster back to a stable goal state within the quota.
Try to scale up again beyond the initial quota limits.
Retry the original operation. This second operation should bring your cluster to a successful state.
Scaling a cluster that uses advanced networking such as Azure Container Networking Interface (CNI), Azure CNI for dynamic IP allocation but has insufficient subnet (networking) resources.
To resolve this issue, see Troubleshoot the SubnetIsFull error code.
Upgrading a cluster that has Pod Disruption Budgets (PDBs) which may cause eviction failures.
To resolve this issue, remove or adjust the PDB so that the pod can be drained. For more information, see Troubleshoot UpgradeFailed errors due to eviction failures caused by PDBs.
Upgrading a cluster that uses deprecated APIs.
For Kubernetes versions upgrading to 1.26 or later, AKS checks whether deprecated APIs are used before starting the cluster upgrade. To resolve this issue and start to upgrade, see How to mitigate stopped upgrade operations due to deprecated APIs.
Cause 2: You're trying to upgrade and scale at the same time
A cluster or node pool can't simultaneously upgrade and scale. Instead, each operation type must finish on the target resource before the next request runs on that same resource. Therefore, operations are limited when active upgrade or scale operations are occurring or attempted.
To resolve this issue, follow these steps:
Determine the current status of your cluster before you try an operation.
To retrieve detailed status about your cluster, run the following az aks show command:
az aks show --resource-group myResourceGroup --name myAKSCluster --output table
Refer to the following table to take the appropriate action based on the cluster's status:
ProvisioningState Action Upgrading Wait until the operation finishes. Failed Follow the solutions that are outlined in Cause 1. Succeeded Retry the scale or other previously failed operation.
Contact us for help
If you have questions or need help, create a support request, or ask Azure community support. You can also submit product feedback to Azure feedback community.