Quickstart: Create a Virtual Machine Scale Set in the Azure portal

Caution

This article references CentOS, a Linux distribution that is nearing End Of Life (EOL) status. Please consider your use and planning accordingly. For more information, see the CentOS End Of Life guidance.

Applies to: ✔️ Linux VMs ✔️ Windows VMs ✔️ Uniform scale sets

Note

The following article is for Uniform Virtual Machine Scale Sets. We recommend using Flexible Virtual Machine Scale Sets for new workloads. Learn more about this new orchestration mode in our Flexible Virtual Machine Scale Sets overview.

A Virtual Machine Scale Set allows you to deploy and manage a set of autoscaling virtual machines. You can scale the number of VMs in the scale set manually, or define rules to autoscale based on resource usage like CPU, memory demand, or network traffic. An Azure load balancer then distributes traffic to the VM instances in the scale set. In this quickstart, you create a Virtual Machine Scale Set in the Azure portal.

If you don't have an Azure subscription, create a free account before you begin.

Log in to Azure

Sign in to the Azure portal.

Create a load balancer

Azure load balancer distributes incoming traffic among healthy virtual machine instances.

First, create a public Standard Load Balancer by using the portal. The name and public IP address you create are automatically configured as the load balancer's front end.

  1. In the search box, type load balancer. Under Marketplace in the search results, pick Load balancer.

  2. In the Basics tab of the Create load balancer page, enter or select the following information:

    Setting Value
    Subscription Select your subscription.
    Resource group Select Create new and type myVMSSResourceGroup in the text box.
    Name myLoadBalancer
    Region Select East US.
    Type Select Public.
    SKU Select Standard.
    Public IP address Select Create new.
    Public IP address name myPip
    Assignment Static
    Availability zone Select Zone-redundant.
  3. When you're done, select Review + create

  4. After it passes validation, select Create.

Create a load balancer

Create Virtual Machine Scale Set

You can deploy a scale set with a Windows Server image or Linux image such as RHEL, CentOS, Ubuntu, or SLES.

  1. Type Scale set in the search box. In the results, under Marketplace, select Virtual Machine Scale Sets. Select Create on the Virtual Machine Scale Sets page, which opens the Create a Virtual Machine Scale Set page.

  2. In the Basics tab, under Project details, make sure the correct subscription is selected and select myVMSSResourceGroup from resource group list.

  3. Type myScaleSet as the name for your scale set.

  4. In Region, select a region that is close to your area.

  5. Under Orchestration, ensure the Uniform option is selected for Orchestration mode.

  6. Select a marketplace image for Image. In this example, we have chosen Ubuntu Server 18.04 LTS.

  7. Enter your desired username, and select which authentication type you prefer.

    • A Password must be at least 12 characters long and meet three out of the four following complexity requirements: one lower case character, one upper case character, one number, and one special character. For more information, see username and password requirements.
    • If you select a Linux OS disk image, you can instead choose SSH public key. Only provide your public key, such as ~/.ssh/id_rsa.pub. You can use the Azure Cloud Shell from the portal to create and use SSH keys.

    Image shows create options for scale sets in the Azure portal.

  8. Select Next to move the other pages.

  9. Leave the defaults for the Disks page.

  10. On the Networking page, under Load balancing, select the Use a load balancer option to put the scale set instances behind a load balancer.

  11. In Load balancing options, select Azure load balancer.

  12. In Select a load balancer, select myLoadBalancer that you created earlier.

  13. For Select a backend pool, select Create new, type myBackendPool, then select Create.

  14. When you're done, select Review + create.

  15. After it passes validation, select Create to deploy the scale set.

Clean up resources

When no longer needed, delete the resource group, scale set, and all related resources. To do so, select the resource group for the scale set and then select Delete.

Next steps

In this quickstart, you created a basic scale set in the Azure portal. To learn more, continue to the tutorial for how to create and manage Azure Virtual Machine Scale Sets.