Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure VMSS instance "Latest model" meaning

When I look into my VMSS in Azure, and enters the "instances" blade, for each instance there is a property "Latest model" which can be either "No" or "Yes".

The property looks like this.

What does this property mean? I couldn't find any documentation about it.

like image 913
user14236339 Avatar asked May 23 '26 08:05

user14236339


1 Answers

The Latest Model inside the VMSS instances blade is know as the Latest Scaleset Model.

If it is Yes, then its the latest scaleset model and vice versa for No. There are couple of ways to change it to Yes i.e. Manual , Automatic and Rolling which can be set from the upgrade policy blade of the VMSS .

enter image description here

In Manual you will have to run the below command to update the scaleset model:

Azure CLI :

az vmss update-instances --resource-group myResourceGroup --name myScaleSet --instance-ids {instanceIds}

Output :

Before Update:

enter image description here

Only Update the last one with instance ID = 8 :

enter image description here

enter image description here

Update the remaining two by giving space separated instance id's:

enter image description here

enter image description here

For More details on Modify Scaleset Model you can refer this Microsoft Documentaion.

like image 127
AnsumanBal-MT Avatar answered Jun 04 '26 22:06

AnsumanBal-MT



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!