Skip to content

Commit 4022e02

Browse files
Merge pull request #223245 from mimckitt/patch-71
Update tutorial-create-vmss.md
2 parents 5f2cf8c + fd7300a commit 4022e02

File tree

1 file changed

+14
-16
lines changed

1 file changed

+14
-16
lines changed

articles/virtual-machines/linux/tutorial-create-vmss.md

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Tutorial: Create a Linux virtual machine scale set"
3-
description: Learn how to create and deploy a highly available application on Linux VMs using a virtual machine scale set
2+
title: "Tutorial: Create a Linux Virtual Machine Scale Set"
3+
description: Learn how to create and deploy a highly available application on Linux VMs using a Virtual Machine Scale Set
44
author: ju-shim
55
ms.author: jushiman
66
ms.topic: tutorial
@@ -13,13 +13,13 @@ ms.custom: mimckitt
1313
#Customer intent: As an IT administrator, I want to learn about autoscaling VMs in Azure so that I can deploy a highly-available and scalable infrastructure.
1414
---
1515

16-
# Tutorial: Create a virtual machine scale set and deploy a highly available app on Linux
16+
# Tutorial: Create a Virtual Machine Scale Set and deploy a highly available app on Linux
1717

1818
**Applies to:** :heavy_check_mark: Linux VMs :heavy_check_mark: Uniform scale sets
1919

20-
Virtual machine scale sets with [Flexible orchestration](../flexible-virtual-machine-scale-sets.md) let you create and manage a group of load balanced VMs. The number of VM instances can automatically increase or decrease in response to demand or a defined schedule.
20+
Virtual Machine Scale Sets with [Flexible orchestration](../flexible-virtual-machine-scale-sets.md) let you create and manage a group of load balanced VMs. The number of VM instances can automatically increase or decrease in response to demand or a defined schedule.
2121

22-
In this tutorial, you deploy a virtual machine scale set in Azure and learn how to:
22+
In this tutorial, you deploy a Virtual Machine Scale Set in Azure and learn how to:
2323

2424
> [!div class="checklist"]
2525
> * Create a resource group.
@@ -54,18 +54,16 @@ Learn more about the differences between Uniform scale sets and Flexible scale s
5454
Use the Azure portal to create a Flexible scale set.
5555

5656
1. Open the [Azure portal](https://portal.azure.com).
57-
1. Search for and select **Virtual machine scale sets**.
58-
1. Select **Create** on the **Virtual machine scale sets** page. The **Create a virtual machine scale set** will open.
57+
1. Search for and select **Virtual Machine Scale Set**.
58+
1. Select **Create** on the **Virtual Machine Scale Sets** page. The **Create a Virtual Machine Scale Set** will open.
5959
1. Select the subscription that you want to use for **Subscription**.
6060
1. For **Resource group**, select **Create new** and type *myVMSSRG* for the name and then select **OK**.
6161
:::image type="content" source="media/tutorial-create-vmss/flex-project-details.png" alt-text="Project details.":::
62-
1. For **Virtual machine scale set name**, type *myVMSS*.
62+
1. For **Virtual Machine Scale Set name**, type *myVMSS*.
6363
1. For **Region**, select a region that is close to you like *East US*.
6464
:::image type="content" source="media/tutorial-create-vmss/flex-details.png" alt-text="Name and region.":::
6565
1. Leave **Availability zone** as blank for this example.
6666
1. For **Orchestration mode**, select **Flexible**.
67-
1. Leave the default of *1* for fault domain count or choose another value from the drop-down.
68-
:::image type="content" source="media/tutorial-create-vmss/flex-orchestration.png" alt-text="Choose Flexible orchestration mode.":::
6967
1. For **Image**, select *Ubuntu 18.04 LTS*.
7068
1. For **Size**, leave the default value or select a size like *Standard_E2s_V3*.
7169
1. In **Username** type *azureuser*.
@@ -77,7 +75,7 @@ Use the Azure portal to create a Flexible scale set.
7775
:::image type="content" source="media/tutorial-create-vmss/load-balancer-settings.png" alt-text="Load balancer settings.":::
7876
1. On the **Create a load balancer** page, type in a name for your load balancer and **Public IP address name**.
7977
1. For **Domain name label**, type in a name to use as a prefix for your domain name. This name must be unique.
80-
1. When you are done, select **Create**.
78+
1. When you're done, select **Create**.
8179
:::image type="content" source="media/tutorial-create-vmss/flex-load-balancer.png" alt-text="Create a load balancer.":::
8280
1. Back on the **Networking** tab, leave the default name for the backend pool.
8381
1. On the **Scaling** tab, leave the default instance count as *2*, or add in your own value. This is the number of VMs that will be created, so be aware of the costs and the limits on your subscription if you change this value.
@@ -126,17 +124,17 @@ Use the Azure portal to create a Flexible scale set.
126124
- npm install express -y
127125
- nodejs index.js
128126
```
129-
1. When you are done, select **Review + create**.
127+
1. When you're done, select **Review + create**.
130128
1. Once you see that validation has passed, you can select **Create** at the bottom of the page to deploy your scale set.
131-
1. When the **Generate new key pair** window opens, select **Download private key and create resource**. Your key file will be download as **myKey.pem**. Make sure you know where the `.pem` file was downloaded, you will need the path to it in the next step.
129+
1. When the **Generate new key pair** window opens, select **Download private key and create resource**. Your key file will be download as **myKey.pem**. Make sure you know where the `.pem` file was downloaded, you'll need the path to it in the next step.
132130
1. When the deployment is complete, select **Go to resource** to see your scale set.
133131

134132

135133
## View the VMs in your scale set
136134

137135
On the page for the scale set, select **Instances** from the left menu.
138136

139-
You will see a list of VMs that are part of your scale set. This list includes:
137+
You'll see a list of VMs that are part of your scale set. This list includes:
140138

141139
- The name of the VM
142140
- The computer name used by the VM.
@@ -165,14 +163,14 @@ Test your scale set by connecting to it from a browser.
165163

166164
## Delete your scale set
167165

168-
When you are done, you should delete the resource group, which will delete everything you deployed for your scale set.
166+
When you're done, you should delete the resource group, which will delete everything you deployed for your scale set.
169167

170168
1. On the page for your scale set, select the **Resource group**. The page for your resource group will open.
171169
1. At the top of the page, select **Delete resource group**.
172170
1. In the **Are you sure you want to delete** page, type in the name of your resource group and then select **Delete**.
173171

174172
## Next steps
175-
In this tutorial, you created a virtual machine scale set. You learned how to:
173+
In this tutorial, you created a Virtual Machine Scale Set. You learned how to:
176174

177175
> [!div class="checklist"]
178176
> * Create a resource group.

0 commit comments

Comments
 (0)