Skip to content

Commit d0b5409

Browse files
committed
KI for 2506
1 parent 71a5f1b commit d0b5409

File tree

2 files changed

+60
-3
lines changed

2 files changed

+60
-3
lines changed

azure-local/known-issues.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Release notes with fixed and known issues in Azure Local
33
description: Read about the known issues and fixed issues in Azure Local.
44
author: alkohli
55
ms.topic: conceptual
6-
ms.date: 07/02/2025
6+
ms.date: 07/18/2025
77
ms.author: alkohli
88
ms.reviewer: alkohli
99
---
@@ -68,6 +68,7 @@ The following table lists the known issues in this release:
6868
| 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). |
6969
| 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. |
7070
| 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). |
7172

7273
## Known issues from previous releases
7374

azure-local/manage/troubleshoot-arc-enabled-vms.md

Lines changed: 58 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Troubleshoot Azure Local Virtual Machines enabled by Azure Arc
33
description: Learn how to troubleshoot issues you experience with Azure Local Virtual Machines (VMs).
44
author: alkohli
55
ms.topic: how-to
6-
ms.date: 06/16/2025
6+
ms.date: 07/18/2025
77
ms.author: alkohli
88
ms.reviewer: vlakshmanan
99
ms.service: azure-local
@@ -15,7 +15,6 @@ ms.service: azure-local
1515

1616
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.
1717

18-
1918
## Property isn't supported for this operation
2019

2120
**Error:**
@@ -187,6 +186,63 @@ To resolve this issue, follow these steps:
187186

188187
1. Restart the VM. After the restart, the warning message should no longer appear.
189188

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:
239+
240+
```json
241+
"storageProfile": {
242+
"vmConfigStoragePathId": "[parameters('storagePathIds')[mod(copyIndex(), length(parameters('storagePathIds')))]]"
243+
}
244+
```
245+
190246
## Next steps
191247

192248
- [Azure Local VM management FAQs](./azure-arc-vms-faq.yml)

0 commit comments

Comments
 (0)