Forum Discussion
How to Modify application hosted by virtual machine scale sets
- Sep 22, 2018
Also, it is recommended that the App deploy/Update is managed by Azure Custom Scriptr Extension. By updating the CSE url, all the VMs in the Scale Set will be automatically update to the latest according to update policy.
https://docs.microsoft.com/en-us/azure/virtual-machine-scale-sets/tutorial-install-apps-cli
Hi, the VMSS resource property upgradePolicy can be set to either the value manual or automatic. If automatic, when an operating system update is available all instances are updated at the same time, which causes downtime. If the property is set to manual, it is up to you to programmatically step through and update each instance using PowerShell. Check the details below:
https://docs.microsoft.com/en-us/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-upgrade-scale-set
Henry