Share via

CRI-AKS | Severla clusters stuck in updating or failed state

Guddy Kumari (MINDTREE LIMITED) 20 Reputation points Microsoft External Staff
2024-01-06T08:02:12.9033333+00:00

while upgrading cluster from 1.24 to 1.25 getting error Failed to save Kubernetes service . Error: Missing service mesh mode: 'Unspecified'.

Azure Kubernetes Service
Azure Kubernetes Service

An Azure service that provides serverless Kubernetes, an integrated continuous integration and continuous delivery experience, and enterprise-grade security and governance.


2 answers

Sort by: Most helpful
  1. KarishmaTiwari-MSFT 20,857 Reputation points Microsoft Employee Moderator
    2024-02-07T03:18:32.9766667+00:00

    @Guddy Kumari (MINDTREE LIMITED) Sometimes, upgrading the node image can resolve issues during the upgrade process using az aks nodepool upgrade command.
    This command will trigger the upgrade again and ensure that all nodes are on the desired version.

    Let me know in the comments if you are still seeing issues after trying all the suggestions in the answer provided.

    0 comments No comments

  2. Nimmala Anveshreddy 3,560 Reputation points Moderator
    2024-01-08T06:29:15.9866667+00:00

    hello @
    Guddy Kumari
    ,

    It seems like you are trying to upgrade your AKS cluster from version 1.24 to 1.25 and getting an error "Failed to save Kubernetes service. Error: Missing service mesh mode: 'Unspecified'".

    This error usually occurs when you have installed a service mesh like Istio or Linkerd on your cluster and the service mesh mode is not specified during the upgrade process.

    To resolve this issue, you need to specify the service mesh mode during the upgrade process. You can do this by adding the --service-mesh flag to the az aks upgrade command. For example:

    az aks upgrade --resource-group myResourceGroup --name myAKSCluster --kubernetes-version 1.25.0 --service-mesh none
    
    
    

    Hope this help you.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.