Downgrade en el tamaño de los nodos de un AKS

Alan Sosa 40 Reputation points
2025-01-07T16:51:45.1433333+00:00

Actualmente tengo este tamaño de nodos: Standard_D4s_v3
Por temas de optimización de costos debo moverme a este tamaño: E2ads_v6

Tengo un clúster de AKS con un grupo de 4 nodos, cuando le doy clic al botón de escalar grupo de nodos, no me habilita la opción para poder cambiar el tamaño de máquina virtual de Standard D4s v3 a la versión: E2ads_v6

Como puedo hacer este downgrade de tamaño de nodos sin impactar el funcionamiento o cual es la ventana que debería programar?

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.
2,224 questions
{count} votes

Accepted answer
  1. Akshay kumar Mandha 1,880 Reputation points Microsoft Vendor
    2025-01-07T19:09:56.1333333+00:00

    Welcome to the Microsoft Q&A Platform! Thank you for asking your question here
    Based upon your query, to resize the node pool size to Standard_D4s_v3 to the E2ads_v6 version
    first, create a new pool with the size you need (E2ads_v6). create the new node pool within your existing AKS cluster as per below command

    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
    

    User's image

    as per the documentation Then, begin transferring your applications and services from the old pool to the new one node pool. Once everything is running fine on the new pool, you can delete the old one. To reduce any potential issues, it's best to do this during a maintenance window or when usage is low. Make sure to monitor your applications closely during the transition to catch and fix any problems quickly
    Please refer the below documentation for more detail explanation to downgrade the node pool
    Resize node pools in Azure Kubernetes Service (AKS)

    Note: - Before making any changes Please test steps in testing environment to identify potential issues before applying them to production.

    Please let me know if you have any further questions, I will help you as needed.!

    If you found this information helpful, please click an accepting the answer and 👍"Upvote" on my post for other community member's reference

    User's image

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

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