Skip to content

Commit e426b81

Browse files
committed
Add the storage issue as known issue
1 parent 7c728ce commit e426b81

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
lines changed

AKS-Arc/aks-troubleshoot.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ The following sections describe known issues for AKS enabled by Azure Arc:
2424

2525
| AKS Arc CRUD operation | Issue | Fix status |
2626
|------------------------|-------|------------|
27+
|AKS steady state |[Storage provisioning issue impacting cluster and node pool creation](issue-storage-provision.md)|Active|
2728
| AKS cluster delete | [Deleted AKS Arc cluster still visible on Azure portal](deleted-cluster-visible.md) | Active |
2829
| AKS steady state | [AKS Arc telemetry pod consumes too much memory and CPU](telemetry-pod-resources.md) | Fixed in 2507 release |
2930
| AKS cluster create | [Can't create AKS cluster or scale node pool because of issues with AKS Arc images](gallery-image-not-usable.md) | Fixed in 2507 release |
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
---
2+
title: Troubleshoot issue where storage provisioning fails
3+
description: Learn how to troubleshoot and mitigate the issue when storage provisioning fails
4+
ms.topic: troubleshooting
5+
author: rcheeran
6+
ms.author: rcheeran
7+
ms.date: 07/23/2025
8+
ms.reviewer: abha
9+
10+
---
11+
12+
# Troubleshoot storage provisioning issues observed during cluster and node pool creation
13+
14+
This article describes the issue where new AKS Arc nodes are created on a single storage path/volume of the Azure Local cluster, breaking the expected round-robin distribution amongst volumes. Over time, this might cause insufficient disk space on that path, potentially resulting in deployment failures.
15+
16+
## Symptoms
17+
18+
During cluster creation or node pool creation and scale operations you might see the following error message:
19+
20+
```bash
21+
The system failed to create <Azure resource name>: There is not enough space on the disk.
22+
```
23+
24+
25+
## Cause
26+
27+
- The issue is caused by a recent regression introduced in Azure Local version 2506.
28+
29+
## Mitigation
30+
31+
This issue was fixed in AKS on [Azure Local, version 2507](/azure/azure-local/whats-new?view=azloc-2507#features-and-improvements-in-2507). That said, this mitigation works only when you create new Azure Local instances with 2507 version. Upgrading from Azure Local versions 2506 to 2507 will not resolve the issue.
32+
33+
### Workaround for Azure Local versions 2506
34+
35+
This issue only affects clusters in Azure Local version 2506. Install the [support module](/azure/aks/aksarc/support-module.md) and run the commands provided in this module.
36+
37+
```powershell
38+
Test-SupportAksArcKnownIssues
39+
```
40+
41+
Run the following the command to fix this known issue on your deployment.
42+
43+
```powershell
44+
Invoke-SupportAksArcRemediation
45+
```
46+
47+
## Verification
48+
49+
Once the fix is done, you should be able to create your clusters and node pools. If you still encounter issues feel free to reach out to Microsoft Support.
50+
51+
## Contact Microsoft Support
52+
53+
If the problem persists, collect the [AKS cluster logs](get-on-demand-logs.md) before you [create a support request](aks-troubleshoot.md#open-a-support-request).
54+
55+
## Next steps
56+
57+
- [Use the diagnostic checker tool to identify common environment issues](aks-arc-diagnostic-checker.md)
58+
- [Review AKS on Azure Local architecture](cluster-architecture.md)

0 commit comments

Comments
 (0)