Skip to content

Commit 6620434

Browse files
committed
update tsg
1 parent d894efb commit 6620434

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

articles/storage/container-storage/troubleshoot-container-storage.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Troubleshoot Azure Container Storage Preview
33
description: Troubleshoot common problems with Azure Container Storage, including installation and storage pool issues.
44
author: khdownie
55
ms.service: azure-container-storage
6-
ms.date: 03/19/2024
6+
ms.date: 03/20/2024
77
ms.author: kendownie
88
ms.topic: how-to
99
---
@@ -16,11 +16,21 @@ ms.topic: how-to
1616

1717
### Azure Container Storage fails to install
1818

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+
```
2028

2129
### Can't set storage pool type to NVMe
2230

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).
2434

2535
## Troubleshoot storage pool issues
2636

@@ -32,7 +42,9 @@ If you're trying to create an Elastic SAN storage pool, you might see the messag
3242

3343
### No block devices found
3444

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).
3648

3749
### Storage pool type already enabled
3850

0 commit comments

Comments
 (0)