Skip to content

Commit 29326cb

Browse files
Merge pull request #208912 from roygara/liveResizeGA
Live resize ga
2 parents 9a1d4ff + fa18443 commit 29326cb

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

articles/virtual-machines/linux/expand-disks.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: roygara
55
ms.service: storage
66
ms.collection: linux
77
ms.topic: how-to
8-
ms.date: 08/02/2022
8+
ms.date: 08/23/2022
99
ms.author: rogarana
1010
ms.subservice: disks
1111
ms.custom: references_regions, ignite-fall-2021, devx-track-azurecli
@@ -23,11 +23,11 @@ This article describes how to expand managed disks for a Linux virtual machine (
2323
2424
## Expand an Azure Managed Disk
2525

26-
### Expand without downtime (preview)
26+
### Expand without downtime
2727

2828
You can now expand your managed disks without deallocating your VM.
2929

30-
The preview for this has the following limitations:
30+
This feature has the following limitations:
3131

3232
[!INCLUDE [virtual-machines-disks-expand-without-downtime-restrictions](../../../includes/virtual-machines-disks-expand-without-downtime-restrictions.md)]
3333

@@ -52,7 +52,7 @@ This article requires an existing VM in Azure with at least one data disk attach
5252
In the following samples, replace example parameter names such as *myResourceGroup* and *myVM* with your own values.
5353

5454
> [!IMPORTANT]
55-
> If you've enabled **LiveResize** and your disk meets the requirements in [Expand without downtime (preview)](#expand-without-downtime-preview), you can skip step 1 and 3.
55+
> If you've enabled **LiveResize** and your disk meets the requirements in [Expand without downtime](#expand-without-downtime), you can skip step 1 and 3.
5656
5757
1. Operations on virtual hard disks can't be performed with the VM running. Deallocate your VM with [az vm deallocate](/cli/azure/vm#az-vm-deallocate). The following example deallocates the VM named *myVM* in the resource group named *myResourceGroup*:
5858

articles/virtual-machines/windows/expand-os-disk.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ manager: roshar
66
ms.service: storage
77
ms.collection: windows
88
ms.topic: article
9-
ms.date: 08/02/2022
9+
ms.date: 08/23/2022
1010
ms.author: kirpas
1111
ms.subservice: disks
1212
ms.custom: devx-track-azurepowershell, references_regions, ignite-fall-2021
@@ -18,17 +18,17 @@ ms.custom: devx-track-azurepowershell, references_regions, ignite-fall-2021
1818
When you create a new virtual machine (VM) in a resource group by deploying an image from [Azure Marketplace](https://azure.microsoft.com/marketplace/), the default operating system (OS) disk is usually 127 GiB (some images have smaller OS disk sizes by default). You can add data disks to your VM (the amount depends on the VM SKU you selected) and we recommend installing applications and CPU-intensive workloads on data disks. You may need to expand the OS disk if you're supporting a legacy application that installs components on the OS disk or if you're migrating a physical PC or VM from on-premises that has a larger OS disk. This article covers expanding either OS disks or data disks.
1919

2020
> [!IMPORTANT]
21-
> Unless you use [Expand without downtime (preview)](#expand-without-downtime-preview), expanding a data disk requires the VM to be deallocated.
21+
> Unless you use [Expand without downtime](#expand-without-downtime), expanding a data disk requires the VM to be deallocated.
2222
>
2323
> Shrinking an existing disk isn’t supported and may result in data loss.
2424
>
2525
> After expanding the disks, you need to [Expand the volume in the operating system](#expand-the-volume-in-the-operating-system) to take advantage of the larger disk.
2626
27-
## Expand without downtime (preview)
27+
## Expand without downtime
2828

2929
You can now expand your data disks without deallocating your VM.
3030

31-
The preview for this has the following limitations:
31+
This feature has the following limitations:
3232

3333
[!INCLUDE [virtual-machines-disks-expand-without-downtime-restrictions](../../../includes/virtual-machines-disks-expand-without-downtime-restrictions.md)]
3434

@@ -47,9 +47,9 @@ Get-AzProviderFeature -FeatureName "LiveResize" -ProviderNamespace "Microsoft.Co
4747
## Resize a managed disk in the Azure portal
4848

4949
> [!IMPORTANT]
50-
> If you've enabled **LiveResize** and your disk meets the requirements in [Expand without downtime (preview)](#expand-without-downtime-preview), you can skip step 1. To expand a disk without downtime in the Azure portal, you must use the following link: [https://aka.ms/iaasexp/DiskLiveResize](https://aka.ms/iaasexp/DiskLiveResize)
50+
> If you've enabled **LiveResize** and your disk meets the requirements in [Expand without downtime](#expand-without-downtime), you can skip step 1.
5151
52-
1. In the [Azure portal](https://aka.ms/iaasexp/DiskLiveResize), go to the virtual machine in which you want to expand the disk. Select **Stop** to deallocate the VM.
52+
1. In the [Azure portal](https://portal.azure.com/), go to the virtual machine in which you want to expand the disk. Select **Stop** to deallocate the VM.
5353
1. In the left menu under **Settings**, select **Disks**.
5454

5555
:::image type="content" source="./media/expand-os-disk/select-disks.png" alt-text="Screenshot that shows the Disks option selected in the Settings section of the menu.":::
@@ -102,7 +102,7 @@ $vm = Get-AzVM -ResourceGroupName $rgName -Name $vmName
102102
```
103103

104104
> [!IMPORTANT]
105-
> If you've enabled **LiveResize** and your disk meets the requirements in [expand without downtime (preview)](#expand-without-downtime-preview), you can skip step 4 and 6.
105+
> If you've enabled **LiveResize** and your disk meets the requirements in [expand without downtime](#expand-without-downtime), you can skip step 4 and 6.
106106
107107
Stop the VM before resizing the disk:
108108

@@ -165,4 +165,4 @@ When you've expanded the disk for the VM, you need to go into the OS and expand
165165

166166
## Next steps
167167

168-
You can also attach disks using the [Azure portal](attach-managed-disk-portal.md).
168+
You can also attach disks using the [Azure portal](attach-managed-disk-portal.md).

includes/virtual-machines-disks-expand-without-downtime-restrictions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
author: roygara
66
ms.service: virtual-machines
77
ms.topic: include
8-
ms.date: 08/08/2022
8+
ms.date: 08/23/2022
99
ms.author: rogarana
1010
ms.custom: include file
1111
---
@@ -16,5 +16,5 @@
1616
- Install and use either:
1717
- The [latest Azure CLI](/cli/azure/install-azure-cli)
1818
- The [latest Azure PowerShell module](/powershell/azure/install-az-ps)
19-
- The Azure portal if accessed through [https://aka.ms/iaasexp/DiskLiveResize](https://aka.ms/iaasexp/DiskLiveResize)
19+
- The [Azure portal](https://portal.azure.com/)
2020
- Or an Azure Resource Manager template with an API version that's 2021-04-01 or newer.

0 commit comments

Comments
 (0)