- Lab
- A Cloud Guru

Configure a Load Balanced VM Scale Set in Azure
Welcome to this Azure hands-on lab, where we will be creating and configuring a Load Balanced Virtual Machine Scale Set (VMSS). The goal of this lesson is to gain knowledge and experience with dynamic and elastic compute using a VMSS and high availability using a load balancer. Good luck, and enjoy the hands-on lab!

Path Info
Table of Contents
-
Challenge
Create a VM Scale Set with Load Balancing
Create a VM Scale Set
Follow the instructions below for creating a Virtual Machine Scale Set:
- Be logged in to portal already. We did it in the Introduction video.
- Click on the + Create a resource option.
- Search for Virtual Machine Scale Set.
- Click on Virtual machine scale set.
- Click Create.
Use the following settings for creating your Virtual Machine Scale Set:
- Fill out Basics:
- Subscription: The default already selected
- Resource group: The default is already selected/existing
- Virtual machine scale set name: vmscaleset01
- Location: West US
- Availability zone: None
- Operating system disk image: Ubuntu 18.04 LTS
- Azure Spot instance: No
- Instance size: *Standard_D2s_v3
- Authentication type: Password
- Username: azureuser
- Password: Use the password you have been provided in the credentials section
- Click on Next: Disks >
- Fill out Disks:
- OS disk type: Standard SSD
- Encryption type: Default
- Click on Next: Networking >
- Fill out Networking:
- Virtual network: vnet1 (Use the existing vnet available in the resource group provided for you).
- Click on the edit icon for the Network interface
- Name: leave as the default
- Subnet: subnet1
- NIC network security group: None (we already have one attached to the subnet
- Public IP address: Enabled
- Click OK
- Use a load balancer: Yes
- Load balancing options: Azure load balancer
- Leave the defaults as-is
- Click Next: Scaling >
- Fill out Scaling:
- Initial instance count: 0 (we will change this later)
- Scaling policy: Manual (we will change this later)
- Click Review + create
- Click Create once validation is passed
- Navigate to the newly created VM Scale Set.
Note that there can be an error with the Azure Portal, which results in the Manual Scale being set to 2 instead of 0.
Make sure you change this to 0 before proceeding.
-
Challenge
Configure a Custom Script Extension
To configure a Custom Script Extension, we first need to store a script file within an Azure blob container.
Follow the steps below to prepare the script.sh file:
- Download the file to use for your VM Extension here: https://raw.githubusercontent.com/linuxacademy/content-az300-lbvmscaleset/master/script.sh
- Navigate to Storage Accounts.
- Select the storage account which was already created for you.
- Click Storage Explorer:
- Right click on Blob Containers.
- Click Create a blob container.
- Name: scripts
- Public access level: Private
- Click Create
- Browse to the new container (note you may need to right click Blob Containers and choose refresh if it doesn't appear.
- Click Upload.
- Select the script.sh file you downloaded earlier.
- Click Upload.
Follow the steps below to configure the Custom Script Extension for the VM Scale Set. Ensure that there are currently no instances running, or they will not have the appropriate configuration (without being upgraded).
- Open the recently created VM Scale Set.
- Click on Extensions within the Settings menu.
- Click on the + Add icon.
- Choose Custom Script For Linux.
- Click Create.
- Click on Browse to select a script file.
- Navigate to the scripts container you created earlier.
- Tick the tick-box beside the script.sh file.
- Click on Select.
- Click OK.
-
Challenge
Configure Autoscale
- Navigate to Settings then Scaling.
- Click on the Custom autoscale option.
- Enter a name for the autoscale:
autoscalesetting01
. - Leave the resource group as-is (select your resource group if it is not pre-populated).
- Configure the 'Default' autoscale profile:
- Leave Scale based on a metric selected.
- Click 'Add a rule', to add a rule for scaling out:
- Scale based on the VM Scale Set
- Criteria: average percentage CPU, greater than 70% over 5 minutes
- Increase by 1 instance and 5 minute cool down
- Add a rule for scaling in:
- Scale based on VM Scale Set
- Criteria: average percentage CPU, less than 10% over 5 minutes
- Decrease by 1 instance
- Configure instance limits: minimum of 1, maximum of 3, and default of 1.
- Save the settings.
We can then connect to an instance within the VMSS and use the stress tool to emulate load. The command to use is
stress --cpu 1
. Watch the monitoring of the VMSS and confirm that your instance count increases.
What's a lab?
Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.
Provided environment for hands-on practice
We will provide the credentials and environment necessary for you to practice right within your browser.
Guided walkthrough
Follow along with the author’s guided walkthrough and build something new in your provided environment!
Did you know?
On average, you retain 75% more of your learning if you get time for practice.

