Start multiple VMs using parameters with Azure DevOps pipeline
In this article I will explain how one can start multiple VMs on Azure using a pipeline automation. The steps you need to follow:
First create a service connection with your subscription. You should navigate to service connections -> azure resource manager and then select service principal (automatic)
You will then have to select the scope* the subscription or resource group this service connection will access.
In my scenario I added a friendly name of the subscription as Azure Subscription Service Connection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When you run the pipeline you will need to provide the VM names. You can also run this pipeline on a schedule using a cron task. My vms are ubuntu1, windows-1
By running the pipeline
Then by navigating on Azure you can notice the VM as started.
Given that you know the timeframe of the updates you can use az vm restart in order to restart the vm and complete the updates. You can also use az vm stop in order to deallocate the vm. https://learn.microsoft.com/en-us/cli/azure/vm?view=azure-cli-latest#az-vm-restart . Another way you can do those would be directly from the vm configuration where you can specify the automatic updates and restart based on a timeframe.
This is for an AVD and Citrix img. I need todo weekly windows updates and don’t want to start them. Then logon to them and do the windows update. I’m looking for a weekly automatic process.
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
To find out more, including how to control cookies, see here:
Cookie Policy
Is it possible to add windows update and then let the vm stop after the windows update is done
Given that you know the timeframe of the updates you can use az vm restart in order to restart the vm and complete the updates. You can also use az vm stop in order to deallocate the vm. https://learn.microsoft.com/en-us/cli/azure/vm?view=azure-cli-latest#az-vm-restart . Another way you can do those would be directly from the vm configuration where you can specify the automatic updates and restart based on a timeframe.
This is for an AVD and Citrix img. I need todo weekly windows updates and don’t want to start them. Then logon to them and do the windows update. I’m looking for a weekly automatic process.
I see. You could perform those actions through the az cli and some extra powershell for the windows updates.