An Azure service that provides serverless Kubernetes, an integrated continuous integration and continuous delivery experience, and enterprise-grade security and governance.
Hello @Manjunath8 K (Consultant),
Thank you for using Q & A forum.
To resolve this issue, ensure that you upgrade your AKS cluster to a version that is still supported. You can check the available upgrades for your cluster using the command:
Azure CLI
az aks get-upgrades --resource-group <myResourceGroup> --name <myAKSCluster>
After confirming the available versions, you can upgrade your cluster using:
Azure CLI
az aks upgrade --resource-group <myResourceGroup> --name <myAKSCluster> --kubernetes-version <desired_version>
Make sure that the desired version is within the supported range for AKS. Once the upgrade is complete, you should be able to add the node pool without encountering the version mismatch error.
If this answers your query, do click Accept Answer and Up-Vote for the same. And, if you have any further query do let us know.