Delete the Azure Virtual Machine Scale Set instances using Runbook

1.2k views Asked by At

First I want to know if is possible to delete vmss instances based on cpu performance of the instances but not by using scaling.

I have a scale set in which the instances have different cpu average and I want to remove only the instances with the lowest cpu performance, let's say instances with less than 20% cpu performance.

The idea is to make a cycle to pass through all the instances and then a condition where I select all the vmss instances with less than 20% cpu performance. Inside the condition to delete the selected the vmss instances.

1

There are 1 answers

4
Charles Xu On BEST ANSWER

Why don't use the automatic scale, it's the best and simplest way to scale the VMSS. If you use the Runbook, you need to get the CPU performance yourself every interval. And I don't know a simple way to get it. You just can easily see the CPU performance in the Azure portal. Go to use the automatic scale, that's the way.