i have qestion resize vm node pool aks

vaso eloshvili 0 Reputation points
2023-03-04T17:33:21.6333333+00:00

hellow i have question about i change size agent but it is still shows same how can i upgrade?

Azure Kubernetes Service (AKS)
Azure Kubernetes Service (AKS)
An Azure service that provides serverless Kubernetes, an integrated continuous integration and continuous delivery experience, and enterprise-grade security and governance.
1,865 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Ammar-Abdelqader01 926 Reputation points Microsoft Employee
    2023-03-05T05:37:37.9633333+00:00

    Hello @vaso eloshvili

    resize current VM node-pool un-supported.

    To resize a node pool in Azure Kubernetes Service (AKS), you can create a new node pool with the desired SKU and then cordon and drain the old node pool.

    You can use the Azure CLI to create a new node pool using the Azure CLI:

    '''

    az aks nodepool add \

    --resource-group myResourceGroup \

    --cluster-name myAKSCluster \

    --name mynodepool \

    --node-count 3 \

    --node-vm-size Standard_DS3_v2 \

    --mode System \

    --no-wait

    '''

    For more information, you can refer to the following link: https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/aks/resize-node-pool.md

    If this helps, please 'Accept Answer' so that it can help others in the community.

    1 person found this answer helpful.
    0 comments No comments