Skip to content

Commit 9a82f0c

Browse files
Merge pull request #272091 from fhryo-msft/patch-23
Update install-container-storage-aks.md
2 parents f1c2e4d + 7b1afcc commit 9a82f0c

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,12 @@ az provider register --namespace Microsoft.ContainerService --wait
5656
az provider register --namespace Microsoft.KubernetesConfiguration --wait
5757
```
5858

59+
To check if these providers are registered successfully, run the following command:
60+
```azurecli-interactive
61+
az provider list --query "[?namespace=='Microsoft.ContainerService'].registrationState"
62+
az provider list --query "[?namespace=='Microsoft.KubernetesConfiguration'].registrationState"
63+
```
64+
5965
## Create a resource group
6066

6167
An Azure resource group is a logical group that holds your Azure resources that you want to manage as a group. When you create a resource group, you're prompted to specify a location. This location is:
@@ -162,7 +168,7 @@ Next, you must update your node pool label to associate the node pool with the c
162168
Run the following command to update the node pool label. Remember to replace `<resource-group>` and `<cluster-name>` with your own values, and replace `<nodepool-name>` with the name of your node pool.
163169
164170
```azurecli-interactive
165-
az aks nodepool update --resource-group <resource group> --cluster-name <cluster name> --name <nodepool name> --labels acstor.azure.com/io-engine=acstor
171+
az aks nodepool update --resource-group <resource-group> --cluster-name <cluster-name> --name <nodepool-name> --labels acstor.azure.com/io-engine=acstor
166172
```
167173

168174
You can verify that the node pool is correctly labeled by signing into the [Azure portal](https://portal.azure.com?azure-portal=true) and navigating to your AKS cluster. Go to **Settings > Node pools**, select your node pool, and under **Taints and labels** you should see `Labels: acstor.azure.com/io-engine:acstor`.
@@ -200,12 +206,12 @@ az role assignment create --assignee $AKS_MI_OBJECT_ID --role "Contributor" --sc
200206

201207
## Install Azure Container Storage
202208

203-
The initial install uses Azure Arc CLI commands to download a new extension. Replace `<cluster-name>` and `<resource-group>` with your own values. The `<name>` value can be whatever you want; it's just a label for the extension you're installing.
209+
The initial install uses Azure Arc CLI commands to download a new extension. Replace `<cluster-name>` and `<resource-group>` with your own values. The `<extension-name>` value can be whatever you want; it's just a label for the extension you're installing.
204210

205211
During installation, you might be asked to install the `k8s-extension`. Select **Y**.
206212

207213
```azurecli-interactive
208-
az k8s-extension create --cluster-type managedClusters --cluster-name <cluster name> --resource-group <resource group name> --name <name of extension> --extension-type microsoft.azurecontainerstorage --scope cluster --release-train stable --release-namespace acstor
214+
az k8s-extension create --cluster-type managedClusters --cluster-name <cluster-name> --resource-group <resource-group> --name <extension-name> --extension-type microsoft.azurecontainerstorage --scope cluster --release-train stable --release-namespace acstor
209215
```
210216

211217
Installation takes 10-15 minutes to complete. You can check if the installation completed correctly by running the following command and ensuring that `provisioningState` says **Succeeded**:

0 commit comments

Comments
 (0)