Skip to content

Commit 1aacb43

Browse files
Fixed a couple comments
1 parent e6232ec commit 1aacb43

File tree

2 files changed

+5
-12
lines changed

2 files changed

+5
-12
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Some features are currently only available in VMs:
3535

3636
> [!IMPORTANT]
3737
> Overprovisioning is supported for Uniform Orchestration mode only; it is not supported for Flexible Orchestration mode.
38+
3839
With overprovisioning turned on, the scale set actually spins up more VMs than you asked for, then deletes the extra VMs once the requested number of VMs are successfully provisioned. Overprovisioning improves provisioning success rates and reduces deployment time. You are not billed for the extra VMs, and they do not count toward your quota limits.
3940

4041
While overprovisioning does improve provisioning success rates, it can cause confusing behavior for an application that is not designed to handle extra VMs appearing and then disappearing. To turn overprovisioning off, ensure you have the following string in your template: `"overprovision": "false"`. More details can be found in the [Scale Set REST API documentation](/rest/api/virtualmachinescalesets/create-or-update-a-set).

articles/virtual-machine-scale-sets/virtual-machine-scale-sets-use-availability-zones.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ For a complete example of a zone-redundant scale set and network resources, see
162162

163163
## Update scale set to add availability zones
164164

165-
You can modify a scale to expand the set of zones over which to spread VM instances. This allows you to take advantage of higher availability SLA for instances spread across availability zones or expand your scale set to take advantage of new availability zones that were not available when the scale set was created. The operation is done without incurring downtime for your existing instances.
165+
You can modify a scale to expand the set of zones over which to spread VM instances. Expanding allows you to take advantage of higher zonal availability SLA (99.99%) versus regional availability SLA (99.95%). Or expand your scale set to take advantage of new availability zones that were not available when the scale set was created.
166166

167167
> [!IMPORTANT]
168168
> Updating Virtual Machine Scale Sets to add availability zones is currently in preview. Previews are made available to you on the condition that you agree to the [Supplemental Terms of Use](https://azure.microsoft.com/support/legal/preview-supplemental-terms/). Some aspects of this feature may change prior to general availability (GA).
@@ -221,9 +221,10 @@ Expanding to a zonal scale set is done in 3 steps:
221221
#### Prepare for zonal expansion
222222

223223
> [!WARNING]
224-
> This preview allows you to add zones to the scale set. You cannot remove zones once they have been added. Updating from a zone-spanning or zonal scale set to a regional scale set is not supported.
224+
> This preview allows you to add zones to the scale set. You cannot go back to a regional scale set or remove zones once they have been added.
225+
225226
In order to prepare for zonal expansion:
226-
* Check that you have enough quota for the VM size in the selected region to handle additional instances. Learn more about [checking and requesting additional quota if needed](../virtual-machines/quotas.md)
227+
* [Check that you have enough quota](../virtual-machines/quotas.md) for the VM size in the selected region to handle additional instances.
227228
* Check that the VM size and disk types you are using are available in all the desired zones. You can use the [Compute Resources SKUs API](/rest/api/compute/resource-skus/list?tabs=HTTP) to determine which sizes are available in which zones
228229
* Validate that the scale set configuration is valid for zonal scale sets:
229230
* `platformFaultDomainCount` must be set to 1 or 5. Fixed spreading with 2 or 3 fault domains is not supported for zonal deployments.
@@ -243,21 +244,12 @@ Update the scale set to change the zones parameter.
243244

244245
### [Azure CLI](#tab/cli-2)
245246

246-
247-
248247
```azurecli
249248
az vmss update --set zones=["1","2","3"] -n < myScaleSet > -g < myResourceGroup >
250249
```
251250

252251
### [Azure PowerShell](#tab/powershell-2)
253252

254-
255-
256-
257-
258-
259-
260-
261253
```azurepowershell
262254
# Get the Virtual Machine Scale Set object
263255
$vmss = Get-AzVmss -ResourceGroupName < resource-group-name > -VMScaleSetName < vmss-name >

0 commit comments

Comments
 (0)