Skip to content

Commit b56ea6f

Browse files
Merge pull request #216797 from ju-shim/ms-date
MS.DATE update 1
2 parents 1c51cce + cd0cc80 commit b56ea6f

10 files changed

+79
-81
lines changed

articles/virtual-machine-scale-sets/flexible-virtual-machine-scale-sets-cli.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
22
title: Create virtual machines in a Flexible scale set using Azure CLI
3-
description: Learn how to create a virtual machine scale set in Flexible orchestration mode using Azure CLI.
3+
description: Learn how to create a Virtual Machine Scale Set in Flexible orchestration mode using Azure CLI.
44
author: fitzgeraldsteele
55
ms.author: fisteele
66
ms.topic: how-to
77
ms.service: virtual-machines
88
ms.subservice: flexible-scale-sets
9-
ms.date: 08/05/2021
9+
ms.date: 11/01/2022
1010
ms.reviewer: jushiman
1111
ms.custom: mimckitt, devx-track-azurecli, vmss-flex
1212
---
1313

1414
# Create virtual machines in a scale set using Azure CLI
1515

16-
This article steps through using the Azure CLI to create a virtual machine scale set.
16+
This article steps through using the Azure CLI to create a Virtual Machine Scale Set.
1717

1818
Make sure that you've installed the latest [Azure CLI](/cli/azure/install-az-cli2) and are logged in to an Azure account with [az login](/cli/azure/reference-index).
1919

@@ -32,8 +32,8 @@ Create a resource group with [az group create](/cli/azure/group) as follows:
3232
```azurecli-interactive
3333
az group create --name myResourceGroup --location eastus
3434
```
35-
## Create a virtual machine scale set
36-
Now create a virtual machine scale set with [az vmss create](/cli/azure/vmss). The following example creates a scale set with an instance count of *2*, and generates SSH keys.
35+
## Create a Virtual Machine Scale Set
36+
Now create a Virtual Machine Scale Set with [az vmss create](/cli/azure/vmss). The following example creates a scale set with an instance count of *2*, and generates SSH keys.
3737

3838
```azurecli-interactive
3939
az vmss create \
@@ -49,7 +49,7 @@ az vmss create \
4949

5050
## Clean up resources
5151

52-
To remove your scale set and additional resources, delete the resource group and all its resources with [az group delete](/cli/azure/group). The `--no-wait` parameter returns control to the prompt without waiting for the operation to complete. The `--yes` parameter confirms that you wish to delete the resources without an additional prompt to do so.
52+
To remove your scale set and other resources, delete the resource group and all its resources with [az group delete](/cli/azure/group). The `--no-wait` parameter returns control to the prompt without waiting for the operation to complete. The `--yes` parameter confirms that you wish to delete the resources without another prompt to do so.
5353

5454
```azurecli-interactive
5555
az group delete --name myResourceGroup --yes --no-wait

articles/virtual-machine-scale-sets/flexible-virtual-machine-scale-sets-migration-resources.md

Lines changed: 26 additions & 26 deletions
Large diffs are not rendered by default.

articles/virtual-machine-scale-sets/flexible-virtual-machine-scale-sets-portal.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
---
22
title: Create virtual machines in a Flexible scale set using Azure portal
3-
description: Learn how to create a virtual machine scale set in Flexible orchestration mode in the Azure portal.
3+
description: Learn how to create a Virtual Machine Scale Set in Flexible orchestration mode in the Azure portal.
44
author: fitzgeraldsteele
55
ms.author: fisteele
66
ms.topic: how-to
77
ms.service: virtual-machines
88
ms.subservice: flexible-scale-sets
9-
ms.date: 10/25/2021
9+
ms.date: 11/01/2022
1010
ms.reviewer: jushiman
1111
ms.custom: mimckitt, devx-track-azurecli, vmss-flex
1212
---
1313

1414
# Create virtual machines in a scale set using Azure portal
1515

16-
This article steps through using Azure portal to create a virtual machine scale set.
16+
This article steps through using Azure portal to create a Virtual Machine Scale Set.
1717
## Log in to Azure
1818
Log in to the Azure portal at https://portal.azure.com.
1919

2020

21-
## Create a virtual machine scale set
21+
## Create a Virtual Machine Scale Set
2222

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

25-
1. In the Azure portal search bar, search for and select **Virtual machine scale sets**.
26-
1. Select **Create** on the **Virtual machine scale sets** page.
25+
1. In the Azure portal search bar, search for and select **Virtual Machine Scale Sets**.
26+
1. Select **Create** on the **Virtual Machine Scale Sets** page.
2727

2828
1. In the **Basics** tab, under **Project details**, make sure the correct subscription is selected and create a new resource group called *myVMSSResourceGroup*.
2929
1. Under **Scale set details**, set *myScaleSet* for your scale set name and select a **Region** that is close to your area.
@@ -34,7 +34,7 @@ You can deploy a scale set with a Windows Server image or Linux image such as RH
3434
- If you select a Linux OS disk image, you can instead choose **SSH public key**. You can use an existing key or create a new one. In this example, we will have Azure generate a new key pair for us. For more information on generating key pairs, see [create and use SSH keys](../virtual-machines/linux/mac-create-ssh-keys.md).
3535

3636

37-
:::image type="content" source="media/quickstart-guides/quick-start-portal-1.png" alt-text="Create a virtual machine scale set using the Azure portal. Basics tab.":::
37+
:::image type="content" source="media/quickstart-guides/quick-start-portal-1.png" alt-text="A screenshot of the Basics tab in the Azure portal during the Virtual Machine Scale Set creation process.":::
3838

3939
1. Select **Next: Disks** to move the disk configuration options. For this quickstart, leave the default disk configurations.
4040

@@ -45,14 +45,14 @@ You can deploy a scale set with a Windows Server image or Linux image such as RH
4545
1. In **Select a load balancer**, select a load balancer or create a new one.
4646
1. For **Select a backend pool**, select **Create new**, type *myBackendPool*, then select **Create**.
4747

48-
:::image type="content" source="media/quickstart-guides/quick-start-portal-2.png" alt-text="Create a virtual machine scale set using the Azure portal. Networking tab.":::
48+
:::image type="content" source="media/quickstart-guides/quick-start-portal-2.png" alt-text="A screenshot of the Networking tab in the Azure portal during the Virtual Machine Scale Set creation process.":::
4949

5050
1. Select **Next: Scaling** to move to the scaling configurations.
5151

5252
1. On the **Scaling** page, set the **initial instance count** field to *5*. You can set this number up to 1000.
5353
1. For the **Scaling policy**, keep it *Manual*.
5454

55-
:::image type="content" source="media/quickstart-guides/quick-start-portal-3.png" alt-text="Create a virtual machine scale set using the Azure portal. Scaling tab.":::
55+
:::image type="content" source="media/quickstart-guides/quick-start-portal-3.png" alt-text="A screenshot of the Scaling tab in the Azure portal during the Virtual Machine Scale Set creation process.":::
5656

5757
1. When you're done, select **Review + create**.
5858
1. After it passes validation, select **Create** to deploy the scale set.

articles/virtual-machine-scale-sets/flexible-virtual-machine-scale-sets-powershell.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
22
title: Create virtual machines in a scale set using Azure PowerShell
3-
description: Learn how to create a virtual machine scale set in Flexible orchestration mode using PowerShell.
3+
description: Learn how to create a Virtual Machine Scale Set in Flexible orchestration mode using PowerShell.
44
author: fitzgeraldsteele
55
ms.author: fisteele
66
ms.topic: how-to
77
ms.service: virtual-machines
88
ms.subservice: flexible-scale-sets
9-
ms.date: 08/05/2021
9+
ms.date: 11/01/2022
1010
ms.reviewer: jushiman
1111
ms.custom: mimckitt, devx-track-azurecli, vmss-flex
1212
---
1313

1414
# Create virtual machines in a scale set using PowerShell
1515

16-
This article steps through using PowerShell to create a virtual machine scale set.
16+
This article steps through using PowerShell to create a Virtual Machine Scale Set.
1717

1818
## Launch Azure Cloud Shell
1919

@@ -29,8 +29,8 @@ Create an Azure resource group with [New-AzResourceGroup](/powershell/module/az.
2929
New-AzResourceGroup -Name 'myVMSSResourceGroup' -Location 'EastUS'
3030
```
3131

32-
## Create a virtual machine scale set
33-
Now create a virtual machine scale set with [New-AzVmss](/powershell/module/az.compute/new-azvmss). The following example creates a scale set with an instance count of *2* running Windows Server 2019 Datacenter edition.
32+
## Create a Virtual Machine Scale Set
33+
Now create a Virtual Machine Scale Set with [New-AzVmss](/powershell/module/az.compute/new-azvmss). The following example creates a scale set with an instance count of *two* running Windows Server 2019 Datacenter edition.
3434

3535
```azurepowershell-interactive
3636
New-AzVmss `
@@ -43,7 +43,7 @@ New-AzVmss `
4343
```
4444

4545
## Clean up resources
46-
When you delete a resource group, all resources contained within, such as the VM instances, virtual network, and disks, are also deleted. The `-Force` parameter confirms that you wish to delete the resources without an additional prompt to do so. The `-AsJob` parameter returns control to the prompt without waiting for the operation to complete.
46+
When you delete a resource group, all resources contained within, such as the VM instances, virtual network, and disks, are also deleted. The `-Force` parameter confirms that you wish to delete the resources without another prompt to do so. The `-AsJob` parameter returns control to the prompt without waiting for the operation to complete.
4747

4848
```azurepowershell-interactive
4949
Remove-AzResourceGroup -Name "myResourceGroup" -Force -AsJob

articles/virtual-machine-scale-sets/flexible-virtual-machine-scale-sets-rest-api.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
22
title: Create virtual machines in a Flexible scale set using an ARM template
3-
description: Learn how to create a virtual machine scale set in Flexible orchestration mode using an ARM template.
3+
description: Learn how to create a Virtual Machine Scale Set in Flexible orchestration mode using an ARM template.
44
author: fitzgeraldsteele
55
ms.author: fisteele
66
ms.topic: how-to
77
ms.service: virtual-machines
88
ms.subservice: flexible-scale-sets
9-
ms.date: 08/05/2021
9+
ms.date: 11/01/2022
1010
ms.reviewer: jushiman
1111
ms.custom: mimckitt, devx-track-azurecli, vmss-flex
1212
---
1313

1414
# Create virtual machines in a scale set using an ARM template
1515

16-
This article steps through using an ARM template to create a virtual machine scale set.
16+
This article steps through using an ARM template to create a Virtual Machine Scale Set.
1717

1818

1919
[!INCLUDE [About Azure Resource Manager](../../includes/resource-manager-quickstart-introduction.md)]
@@ -30,7 +30,7 @@ If you don't have an Azure subscription, create a [free account](https://azure.m
3030

3131
[!INCLUDE [About Azure Resource Manager](../../includes/resource-manager-quickstart-introduction.md)]
3232

33-
ARM templates let you deploy groups of related resources. In a single template, you can create the virtual machine scale set, install applications, and configure autoscale rules. With the use of variables and parameters, this template can be reused to update existing, or create additional, scale sets. You can deploy templates through the Azure portal, Azure CLI, or Azure PowerShell, or from continuous integration / continuous delivery (CI/CD) pipelines.
33+
ARM templates let you deploy groups of related resources. In a single template, you can create the Virtual Machine Scale Set, install applications, and configure autoscale rules. With the use of variables and parameters, this template can be reused to update existing, or create additional, scale sets. You can deploy templates through the Azure portal, Azure CLI, or Azure PowerShell, or from continuous integration / continuous delivery (CI/CD) pipelines.
3434

3535

3636
## Review the template
@@ -431,7 +431,7 @@ These resources are defined in the template:
431431

432432
### Define a scale set
433433

434-
To create a scale with a template, you define the appropriate resources. The core parts of the virtual machine scale set resource type are:
434+
To create a scale with a template, you define the appropriate resources. The core parts of the Virtual Machine Scale Set resource type are:
435435

436436
| Property | Description of property | Example template value |
437437
|------------------------------|----------------------------------------------------------|-------------------------------------------|

articles/virtual-machine-scale-sets/instance-generalized-image-version.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ ms.service: virtual-machine-scale-sets
77
ms.subservice: shared-image-gallery
88
ms.workload: infrastructure-services
99
ms.topic: how-to
10-
ms.date: 04/26/2022
10+
ms.date: 11/01/2022
1111
ms.reviewer: cynthn
1212
---
1313

1414
# Create a scale set from a generalized image
1515

1616
> [!IMPORTANT]
17-
> You can't currently create a Flexible virtual machine scale set from an image shared by another tenant.
17+
> You can't currently create a Flexible Virtual Machine Scale Set from an image shared by another tenant.
1818
1919
Create a scale set from a generalized image version stored in an [Azure Compute Gallery](../virtual-machines/shared-image-galleries.md). If you want to create a scale set using a specialized image version, see [Create scale set instances from a specialized image](instance-specialized-image-version-cli.md).
2020

articles/virtual-machine-scale-sets/instance-specialized-image-version.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ ms.service: virtual-machine-scale-sets
77
ms.subservice: shared-image-gallery
88
ms.workload: infrastructure-services
99
ms.topic: how-to
10-
ms.date: 04/26/2022
10+
ms.date: 11/01/2022
1111
ms.reviewer: cynthn
1212
ms.custom: devx-track-azurecli
1313
---
1414

1515
# Create a scale set using a specialized image version with the Azure CLI
1616

1717
> [!IMPORTANT]
18-
> You can't currently create a virtual machine scale set using Flexible orchestration mode from an image shared by another tenant.
18+
> You can't currently create a Virtual Machine Scale Set using Flexible orchestration mode from an image shared by another tenant.
1919
2020
Create a scale set from a [specialized image version](../virtual-machines/shared-image-galleries.md#generalized-and-specialized-images) stored in an Azure Compute Gallery. If you want to create a scale set using a generalized image version, see [Create a scale set from a generalized image](instance-generalized-image-version-cli.md).
2121

articles/virtual-machine-scale-sets/orchestration-modes-api-comparison.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@ author: fitzgeraldsteele
55
ms.author: fisteele
66
ms.topic: conceptual
77
ms.service: virtual-machine-scale-sets
8-
ms.date: 05/23/2022
8+
ms.date: 11/01/2022
99
ms.reviewer: jushiman
1010
ms.custom: mimckitt, devx-track-azurecli, vmss-flex
1111
---
1212

1313
# Orchestration modes API comparison
1414

1515
> [!NOTE]
16-
> 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](flexible-virtual-machine-scale-sets.md).
16+
> 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](flexible-virtual-machine-scale-sets.md).
1717
18-
This article compares the API differences between Uniform and [Flexible orchestration](..\virtual-machines\flexible-virtual-machine-scale-sets.md) modes for virtual machine scale sets. To learn more about Uniform and Flexible virtual machine scale sets, see [orchestration modes](virtual-machine-scale-sets-orchestration-modes.md).
18+
This article compares the API differences between Uniform and [Flexible orchestration](..\virtual-machines\flexible-virtual-machine-scale-sets.md) modes for Virtual Machine Scale Sets. To learn more about Uniform and Flexible Virtual Machine Scale Sets, see [orchestration modes](virtual-machine-scale-sets-orchestration-modes.md).
1919

2020

2121
## Instance view
2222

2323
| Uniform API | Flexible alternative |
2424
|-|-|
25-
| Virtual machine scale sets Instance View | Get instance view on individual VMs; Use Resource Graph to query power state |
25+
| Virtual Machine Scale Sets Instance View | Get instance view on individual VMs; Use Resource Graph to query power state |
2626

2727

2828
## Scale set lifecycle batch operations
@@ -46,7 +46,7 @@ This article compares the API differences between Uniform and [Flexible orchestr
4646

4747
**Uniform API:**
4848

49-
Virtual machine scale sets VM Get or Update Instance:
49+
Virtual Machine Scale Sets VM Get or Update Instance:
5050
- [Get](/rest/api/compute/virtualmachinescalesetvms/get)
5151
- [Update](/rest/api/compute/virtualmachinescalesetvms/update)
5252

@@ -92,7 +92,7 @@ resources
9292

9393
**Uniform API:**
9494

95-
Virtual machine scale sets Operations:
95+
Virtual Machine Scale Sets Operations:
9696
- [Update Instances](/rest/api/compute/virtual-machine-scale-sets/update-instances)
9797
- [Deallocate](/rest/api/compute/virtual-machine-scale-sets/deallocate)
9898
- [Perform Maintenance](/rest/api/compute/virtual-machine-scale-sets/perform-maintenance)
@@ -115,7 +115,7 @@ Virtual machines Operations:
115115

116116
**Uniform API:**
117117

118-
Virtual machine scale sets VM Extension:
118+
Virtual Machine Scale Sets VM Extension:
119119
- [Create Or Update](/rest/api/compute/virtual-machine-scale-set-vm-extensions/create-or-update)
120120
- [Delete](/rest/api/compute/virtual-machine-scale-set-vm-extensions/delete)
121121
- [Get](/rest/api/compute/virtual-machine-scale-set-vm-extensions/get)
@@ -143,13 +143,13 @@ Invoke operations on individual VMs.
143143

144144
**Uniform API:**
145145

146-
Uniform virtual machine scale sets APIs:
146+
Uniform Virtual Machine Scale Sets APIs:
147147
- [Convert To Single Placement Group](/rest/api/compute/virtual-machine-scale-sets/convert-to-single-placement-group)
148148
- [Force Recovery Service Fabric Platform Update Domain Walk](/rest/api/compute/virtual-machine-scale-sets/force-recovery-service-fabric-platform-update-domain-walk)
149149

150150
**Flexible alternative:**
151151

152-
Not supported on Flexible virtual machine scale sets.
152+
Not supported on Flexible Virtual Machine Scale Sets.
153153

154154

155155
## Next steps

articles/virtual-machine-scale-sets/overview.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
2-
title: Azure virtual machine scale sets overview
3-
description: Learn about Azure virtual machine scale sets and how to automatically scale your applications
2+
title: Azure Virtual Machine Scale Sets overview
3+
description: Learn about Azure Virtual Machine Scale Sets and how to automatically scale your applications
44
author: ju-shim
55
ms.author: jushiman
66
ms.topic: overview
77
ms.service: virtual-machine-scale-sets
88
ms.subservice:
9-
ms.date: 06/30/2020
9+
ms.date: 11/01/2022
1010
ms.reviewer: mimckitt
1111

1212
---
13-
# What are virtual machine scale sets?
13+
# What are Virtual Machine Scale Sets?
1414

15-
Azure virtual machine scale sets 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. Scale sets provide the following key benefits:
15+
Azure Virtual Machine Scale Sets 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. Scale sets provide the following key benefits:
1616
- Easy to create and manage multiple VMs
1717
- Provides high availability and application resiliency by distributing VMs across availability zones or fault domains
1818
- Allows your application to automatically scale as resource demand changes
@@ -32,10 +32,10 @@ Learn more about the differences between Uniform scale sets and Flexible scale s
3232
> The orchestration mode is defined when you create the scale set and cannot be changed or updated later.
3333
3434

35-
## Why use virtual machine scale sets?
35+
## Why use Virtual Machine Scale Sets?
3636
To provide redundancy and improved performance, applications are typically distributed across multiple instances. Customers may access your application through a load balancer that distributes requests to one of the application instances. If you need to perform maintenance or update an application instance, your customers must be distributed to another available application instance. To keep up with extra customer demand, you may need to increase the number of application instances that run your application.
3737

38-
Azure virtual machine scale sets provide the management capabilities for applications that run across many VMs, automatic scaling of resources, and load balancing of traffic. Scale sets provide the following key benefits:
38+
Azure Virtual Machine Scale Sets provide the management capabilities for applications that run across many VMs, automatic scaling of resources, and load balancing of traffic. Scale sets provide the following key benefits:
3939

4040
- **Easy to create and manage multiple VMs**
4141
- When you have many VMs that run your application, it's important to maintain a consistent configuration across your environment. For reliable performance of your application, the VM size, disk configuration, and application installs should match across all VMs.

0 commit comments

Comments
 (0)