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
description: Troubleshoot common problems with Azure Container Storage, including installation and storage pool issues.
4
4
author: khdownie
5
5
ms.service: azure-container-storage
6
-
ms.date: 03/19/2024
6
+
ms.date: 03/20/2024
7
7
ms.author: kendownie
8
8
ms.topic: how-to
9
9
---
@@ -16,11 +16,21 @@ ms.topic: how-to
16
16
17
17
### Azure Container Storage fails to install
18
18
19
-
After running `az aks create`, you might see the message *Azure Container Storage failed to install. AKS cluster is created. Please run `az aks update` along with `--enable-azure-container-storage` to enable Azure Container Storage*. This message means that Azure Container Storage wasn't installed, but your AKS cluster was created properly.
19
+
After running `az aks create`, you might see the message *Azure Container Storage failed to install. AKS cluster is created. Please run `az aks update` along with `--enable-azure-container-storage` to enable Azure Container Storage*.
20
+
21
+
This message means that Azure Container Storage wasn't installed, but your AKS cluster was created properly.
22
+
23
+
To install Azure Container Storage on the cluster and create a storage pool, run the following command. Replace `<cluster-name>` and `<resource-group>` with your own values. Replace `<storage-pool-type>` with `azureDisk`, `ephemeraldisk`, or `elasticSan`.
24
+
25
+
```azurecli-interactive
26
+
az aks update -n <cluster-name> -g <resource-group> --enable-azure-container-storage <storage-pool-type>
27
+
```
20
28
21
29
### Can't set storage pool type to NVMe
22
30
23
-
If you try to install Azure Container Storage with ephemeral disk, specifically with local NVMe on a cluster where the virtual machine (VM) SKU doesn't have NVMe drives, you get the following error message: *Cannot set --storage-pool-option as NVMe as none of the node pools can support ephemeral NVMe disk*. To remediate, create a node pool with a VM SKU that has NVMe drives and try again. See [storage optimized VMs](../../virtual-machines/sizes-storage.md).
31
+
If you try to install Azure Container Storage with ephemeral disk, specifically with local NVMe on a cluster where the virtual machine (VM) SKU doesn't have NVMe drives, you get the following error message: *Cannot set --storage-pool-option as NVMe as none of the node pools can support ephemeral NVMe disk*.
32
+
33
+
To remediate, create a node pool with a VM SKU that has NVMe drives and try again. See [storage optimized VMs](../../virtual-machines/sizes-storage.md).
24
34
25
35
## Troubleshoot storage pool issues
26
36
@@ -32,7 +42,9 @@ If you're trying to create an Elastic SAN storage pool, you might see the messag
32
42
33
43
### No block devices found
34
44
35
-
If you see this message, you're likely trying to create an ephemeral disk storage pool on a cluster where the VM SKU doesn't have NVMe drives. To remediate, create a node pool with a VM SKU that has NVMe drives and try again. See [storage optimized VMs](../../virtual-machines/sizes-storage.md).
45
+
If you see this message, you're likely trying to create an ephemeral disk storage pool on a cluster where the VM SKU doesn't have NVMe drives.
46
+
47
+
To remediate, create a node pool with a VM SKU that has NVMe drives and try again. See [storage optimized VMs](../../virtual-machines/sizes-storage.md).
0 commit comments