Skip to content

Commit dff7f23

Browse files
Merge pull request #312893 from eh8/main
Clarify default storage class names
2 parents 3d1c320 + c90837f commit dff7f23

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

articles/storage/container-storage/container-storage-faq.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,14 @@ Azure Container Storage is a cloud-based volume management, deployment, and orch
5555
Example:
5656

5757
```azurecli
58-
az aks update -n <cluster-name> -g <resource-group> --enable-azure-container-storage ephemeralDisk,elasticSan
58+
az aks update -n <cluster-name> -g <resource-group> --enable-azure-container-storage ephemeralDisk elasticSan
5959
```
6060

6161
**Behavior:**
6262
- Installs the installer plus the selected CSI driver(s).
6363
- Creates default storage class objects if none exists.
64-
- Supports comma-separated storage types.
64+
- Default storage class names are `local-csi` for `ephemeralDisk` (local NVMe) and `azuresan-csi` for `elasticSan` (Azure Elastic SAN).
65+
- Supports multiple storage types.
6566

6667
Supported storage types for version 2.1.0 and later: `ephemeralDisk` (local NVMe) and `elasticSan` (Azure Elastic SAN).
6768

@@ -70,7 +71,8 @@ Azure Container Storage is a cloud-based volume management, deployment, and orch
7071
The extension configuration supports the same flows as Azure CLI:
7172

7273
- **Installer-only (choose storage later):** Set `enable-azure-container-storage` to `true`. Create a storage class later to trigger driver installation.
73-
- **Installer + storage type(s):** Set `enable-azure-container-storage` to a storage type value such as `ephemeralDisk`, `elasticSan`, or a comma-separated list like `ephemeralDisk,elasticSan`. This installs the installer and the selected CSI drivers.
74+
- **Installer + storage type(s):** Set `enable-azure-container-storage` to a storage type value such as `ephemeralDisk`, `elasticSan`, or a list like `ephemeralDisk elasticSan`. This installs the installer, the selected CSI drivers, and creates a default storage class.
75+
Default storage class names are `local-csi` for `ephemeralDisk` (local NVMe) and `azuresan-csi` for `elasticSan` (Azure Elastic SAN).
7476

7577
Supported storage types for version 2.1.0 and later: `ephemeralDisk` (local NVMe) and `elasticSan` (Azure Elastic SAN).
7678

articles/storage/container-storage/install-container-storage-aks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Run the following command to create a new AKS cluster and install Azure Containe
106106
az aks create -n <cluster-name> -g <resource-group> --node-vm-size Standard_L8s_v3 --enable-azure-container-storage ephemeralDisk --generate-ssh-keys
107107
```
108108

109-
This command installs the installer, deploys the local NVMe CSI driver, and creates a default storage class called `local-csi`. You can install and use both local NVMe and Elastic SAN by providing comma-separated values such as `ephemeralDisk,elasticSan`.
109+
This command installs the installer, deploys the local NVMe CSI driver, and creates a default storage class called `local-csi`. You can install and use both local NVMe and Elastic SAN by providing a list such as `ephemeralDisk elasticSan`.
110110

111111
## Install Azure Container Storage on an existing AKS cluster
112112

@@ -128,7 +128,7 @@ Run the following command to enable Azure Container Storage on an existing AKS c
128128
az aks update -n <cluster-name> -g <resource-group> --enable-azure-container-storage elasticSan
129129
```
130130

131-
This command installs the installer, deploys the Elastic SAN CSI driver, and creates a default storage class called `azuresan-csi`. You can install and use both local NVMe and Elastic SAN by providing comma-separated values such as `ephemeralDisk,elasticSan`.
131+
This command installs the installer, deploys the Elastic SAN CSI driver, and creates a default storage class called `azuresan-csi`. You can install and use both local NVMe and Elastic SAN by providing a list such as `ephemeralDisk elasticSan`.
132132

133133
::: zone-end
134134

0 commit comments

Comments
 (0)