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
Copy file name to clipboardExpand all lines: azure-local/known-issues.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Release notes with fixed and known issues in Azure Local
3
3
description: Read about the known issues and fixed issues in Azure Local.
4
4
author: alkohli
5
5
ms.topic: conceptual
6
-
ms.date: 07/02/2025
6
+
ms.date: 07/18/2025
7
7
ms.author: alkohli
8
8
ms.reviewer: alkohli
9
9
---
@@ -68,6 +68,7 @@ The following table lists the known issues in this release:
68
68
| Update <!--33470082-->| Solution update fails with the error: `Unable to install solution update "11.2506.1001.24" - Type 'UpdateFOD' of Role 'ComposedImageUpdate' raised an exception.`| For detailed steps on how to resolve this issue, see the [Troubleshooting guide](https://github.com/Azure/AzureLocal-Supportability/blob/main/TSG/Update/SolutionUpdate-UpdateFOD.md). |
69
69
| Deployment <!--33471589-->| After Azure portal deployment, SConfig network settings shows the error: `Set-SCfNetworksetting : Cannot bind argument to parameter 'Value' because it is null.`| There's no known workaround in this release. |
70
70
| Update <!--33448368-->| Cluster-Aware Updating runs might fail with the error:<br>`Type 'SBEPartnerConfirmCauDone' of Role 'SBE' raised an exception:<br>SBE_MsftCIOnlyCommon_CommonForTesting_4.2.2504.16: ErrorID: SBE-CAU-RUNNING-AFTER-DONE -- CAU run is still in progress when it should be done. See https://aka.ms/AzureLocal/SBE/CauHelp for help. Review full Get-CauRun output it identify if it is progressing or stuck. Wait for it to complete if progressing.`| Wait for CAU run to complete (wait for `Get-CauRun` to report `RunNotInProgress`) and resume the update. |
71
+
|Azure Local VMs <!--33811472-->| VMs and VHDs with no storage path specified during deployment are landing only on the first storage path of the cluster. | Create VMs and VHDs with a specified storage path. For more information, see [Troubleshoot Azure Local Virtual Machines enabled by Azure Arc](../azure-local/manage/troubleshoot-arc-enabled-vms.md#vms-and-vhds-deployed-without-a-specified-storage-path-landing-only-on-the-first-storage-path-in-the-cluster). |
Copy file name to clipboardExpand all lines: azure-local/manage/troubleshoot-arc-enabled-vms.md
+58-2Lines changed: 58 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@ title: Troubleshoot Azure Local Virtual Machines enabled by Azure Arc
3
3
description: Learn how to troubleshoot issues you experience with Azure Local Virtual Machines (VMs).
4
4
author: alkohli
5
5
ms.topic: how-to
6
-
ms.date: 06/16/2025
6
+
ms.date: 07/18/2025
7
7
ms.author: alkohli
8
8
ms.reviewer: vlakshmanan
9
9
ms.service: azure-local
@@ -15,7 +15,6 @@ ms.service: azure-local
15
15
16
16
This article describes how to collect logs and troubleshoot issues with Azure Local Virtual Machines (VMs) enabled by Azure Arc. It also lists the current limitations and known issues with Azure Local VM management, along with recommended resolutions.
17
17
18
-
19
18
## Property isn't supported for this operation
20
19
21
20
**Error:**
@@ -187,6 +186,63 @@ To resolve this issue, follow these steps:
187
186
188
187
1. Restart the VM. After the restart, the warning message should no longer appear.
189
188
189
+
## VMs and VHDs deployed without a specified storage path landing only on the first storage path in the cluster
190
+
191
+
**Error:**
192
+
193
+
The system failed to create `[REDACTED]`: There is not enough space on the disk.
194
+
195
+
**Cause:**
196
+
197
+
This error can occur due to a known issue in Azure Local 2506 where VMs and VHDs with no storage path specified during deployment are landing only on the first storage path of the cluster. Over time, this can lead to that path becoming full, preventing new deployments and potentially causing existing VMs to enter a paused-critical state due to disk I/O failures.
198
+
199
+
**Resolution:**
200
+
201
+
When creating a VM or VHD, choose a storage path manually:
202
+
203
+
# [Azure portal](#tab/azure-portal)
204
+
205
+
When creating a VM in the Azure portal, select the **Choose manually** option for storage path and then select a storage path from the available list.
206
+
207
+
When attaching data disks to the VM, select the **Choose manually** option for storage path allocation method and then select a storage path from the available list.
208
+
209
+
# [CLI](#tab/cli)
210
+
211
+
To specify a storage path when creating a VM or VHD, use the `--storage-path-id` parameter with the `az stack-hci-vm create` or `az stack-hci-vm disk create` command.
212
+
213
+
# [ARM template](#tab/arm-template)
214
+
215
+
To define a storage path for a VM configuration, add `vmConfigStoragePathId` to the `storageProfile` section of the VM resource:
216
+
217
+
```json
218
+
"storageProfile": {
219
+
"vmConfigStoragePathId": "Insert ARM ID of specified storage path"
220
+
}
221
+
```
222
+
223
+
If using an ARM template that creates multiple VMs in one deployment:
224
+
225
+
1. Define a parameter for the storage path IDs:
226
+
227
+
```json
228
+
"parameters": {
229
+
"storagePathIds": {
230
+
"type": "array",
231
+
"metadata": {
232
+
"description": "List of storage path resource IDs to cycle through for VM placement."
233
+
}
234
+
}
235
+
}
236
+
```
237
+
238
+
1. Add `vmConfigStoragePathId` to the `storageProfile`section of the VM resource:
0 commit comments