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.
Hello @vaso eloshvili , Checking in to see if the answer below helped.
If you still have questions, please let us know in the "comments" and we would be happy to help you.
If any of the replies below has been helpful, we appreciate hearing from you and would love to help others who may have the same question. Accepting answers helps increase visibility of this question for other members of the Microsoft Q&A community.
Thank you for helping to improve Microsoft Q&A!
Hello @vaso eloshvili ,
Do you want to resize the SKU of your VMSS or the node pool count? Let' say you have a node pool with 5 instances and you want to scale down to 3?