You need to deploy an Azure virtual machine scale set that contains five instances as quickly as possible.
What should you do?
Click on the arrows to vote for the correct answer
A. B. C. D.D
https://docs.microsoft.com/en-us/azure/virtual-machine-scale-sets/orchestration-modesThe correct answer is D. Deploy one virtual machine scale set that is set to ScaleSetVM orchestration mode.
Explanation: A virtual machine scale set is an Azure compute resource that enables you to deploy and manage a set of identical VMs. VM scale sets are used to build scalable and highly available applications.
To deploy an Azure virtual machine scale set that contains five instances as quickly as possible, the most efficient and recommended approach is to deploy a single virtual machine scale set that contains five VM instances, instead of deploying five individual VMs. This reduces the time needed to deploy and configure each VM instance and simplifies management and maintenance.
Option A, Deploying five individual VMs and modifying the Availability Zones settings for each virtual machine, is not the recommended approach for quickly deploying a set of identical VMs as it requires individual configuration and management of each VM.
Option B, Deploying five individual VMs and modifying the Size setting for each virtual machine, is not the recommended approach for quickly deploying a set of identical VMs as it requires individual configuration and management of each VM.
Option C, Deploying a single virtual machine set to VM orchestration mode is not the recommended approach for quickly deploying a set of identical VMs because this mode is designed to deploy and manage individual VMs, not scale sets.
Option D, Deploying a single virtual machine scale set that is set to ScaleSetVM orchestration mode is the recommended approach for quickly deploying a set of identical VMs as it simplifies management and configuration of the VM instances within the scale set.
Overall, Option D provides the best balance between efficiency, scalability, and ease of management when deploying a set of identical VMs on Azure.