You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -75,8 +75,6 @@ az feature show --namespace Microsoft.Compute --name LiveResize
75
75
76
76
### Expand Azure Managed Disk
77
77
78
-
# [Azure CLI](#tab/azure-cli)
79
-
80
78
Make sure that you have the latest [Azure CLI](/cli/azure/install-az-cli2) installed and are signed in to an Azure account by using [az login](/cli/azure/reference-index#az-login).
81
79
82
80
This article requires an existing VM in Azure with at least one data disk attached and prepared. If you do not already have a VM that you can use, see [Create and prepare a VM with data disks](tutorial-manage-disks.md#create-and-attach-disks).
@@ -122,8 +120,6 @@ In the following samples, replace example parameter names such as *myResourceGro
122
120
az vm start --resource-group myResourceGroup --name myVM
123
121
```
124
122
125
-
---
126
-
127
123
## Expand a disk partition and filesystem
128
124
> [!NOTE]
129
125
> While there are many tools that may be used for performing the partition resizing, the tools detailed in the remainder of this document are the same tools used by certain automated processes such as cloud-init. As described here, the `growpart` tool with the `gdisk` package provides universal compatibility with GUID Partition Table (GPT) disks, as older versions of some tools such as `fdisk` did not support GPT.
@@ -615,3 +611,29 @@ To increase the OS disk size in SUSE 12 SP4, SUSE SLES 12 for SAP, SUSE SLES 15,
615
611
/dev/sdb1 3.9G 16M 3.7G 1% /mnt/resource
616
612
tmpfs 93M 0 93M 0% /run/user/1000
617
613
```
614
+
615
+
---
616
+
617
+
## Expanding without downtime classic VM SKU support
618
+
619
+
If you're using a classic VM SKU, it might not support expanding disks without downtime.
620
+
621
+
Use the following PowerShell script to determine which VM SKUs it's available with:
Copy file name to clipboardExpand all lines: includes/virtual-machines-disks-expand-without-downtime-restrictions.md
+2-22Lines changed: 2 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,11 +5,10 @@
5
5
author: roygara
6
6
ms.service: virtual-machines
7
7
ms.topic: include
8
-
ms.date: 10/14/2022
8
+
ms.date: 12/09/2022
9
9
ms.author: rogarana
10
10
ms.custom: include file
11
11
---
12
-
- Only available with particular VM SKUs.
13
12
- Only supported for data disks.
14
13
- If a disk is 4 TiB or less, you can't expand it beyond 4 TiB without deallocating the VM. If a disk is already greater than 4 TiB, you can expand it without deallocating the VM.
15
14
- Not supported for Ultra disks or Premium SSD v2 disks.
@@ -19,23 +18,4 @@
19
18
- The [latest Azure PowerShell module](/powershell/azure/install-az-ps)
20
19
- The [Azure portal](https://portal.azure.com/)
21
20
- Or an Azure Resource Manager template with an API version that's `2021-04-01` or newer.
22
-
23
-
Use the following PowerShell script to determine which VM SKUs it's available with:
- Not available on some classic VMs. Use [this script](#expanding-without-downtime-classic-vm-sku-support) to get a list of classic VM SKUs that support expanding without downtime.
0 commit comments