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: articles/storage/container-storage/troubleshoot-container-storage.md
+62Lines changed: 62 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -101,6 +101,68 @@ To remediate, create a node pool with a VM SKU that has NVMe drives and try agai
101
101
102
102
To check the status of your storage pools, run `kubectl describe sp <storage-pool-name> -n acstor`. Here are some issues you might encounter.
103
103
104
+
### Ephemeral storage pool doesn’t claim the capacity when the ephemeral disks are used by other daemonsets
105
+
106
+
When you enable ephemeral storage pool on a nodepool where the nodes have temp SSD or local NVMe disks, it’s possible that the ephemeral storage pool doesn’t claim the capacity from these disks because they are used by other daemonsets.
107
+
108
+
You can follow the guidance below to enable Azure Container Storage to manage these local disks exclusively:
109
+
110
+
1. Run the following command to see the claimed capacity by ephemeral storage pool:
111
+
112
+
```bash
113
+
$ kubectl get sp -A
114
+
NAMESPACE NAME CAPACITY AVAILABLE USED RESERVED READY AGE
115
+
acstor ephemeraldisk-nvme 0 0 0 0 False 82s
116
+
```
117
+
Above example shows 0 capacity claimed by `ephemeraldisk-nvme` storage pool.
118
+
119
+
1. Run the following command to confirm unclaimed state of these local block devices and check existing file system on the disks:
120
+
```bash
121
+
$ kubectl get bd -A
122
+
NAMESPACE NAME NODENAME SIZE CLAIMSTATE STATUS AGE
123
+
acstor blockdevice-1f7ad8fa32a448eb9768ad8e261312ff aks-nodepoolnvme-38618677-vmss000001 1920383410176 Unclaimed Active 22m
124
+
acstor blockdevice-9c8096fc47cc2b41a2ed07ec17a83527 aks-nodepoolnvme-38618677-vmss000000 1920383410176 Unclaimed Active 23m
Above example shows `ephemeraldisk-nvme` storage pool successfully claims the capacity from local NVMe disks on the nodes.
165
+
104
166
### Error when trying to expand an Azure Disks storage pool
105
167
106
168
If your existing storage pool is less than 4 TiB (4,096 GiB), you can only expand it up to 4,095 GiB. If you try to expand beyond that, the internal PVC will get an error message like "Only Disk CachingType 'None' is supported for disk with size greater than 4095 GB" or "Disk 'xxx' of size 4096 GB (<=4096 GB) cannot be resized to 16384 GB (>4096 GB) while it is attached to a running VM. Please stop your VM or detach the disk and retry the operation."
0 commit comments