Search code examples
linuxazureazure-virtual-machineazure-deploymentazure-vm-scale-set

How can I clone an exisintg Linux VM to a scale set in Azure


In my Azure cloud I have a standalone VM running Ubuntu 14 where I installed a bunch of custom software. The virtual machine is NOT a classic one, this is a "new type" VM. I also created a scale set. Now I want to somehow capture the image if my standalone VM and deploy it to all machines of my scale set. Ideally I don't want to recreate the scale set but rather just replace the images in the allocated machines. How can this be done?


Solution