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/install-container-storage-aks.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,12 @@ az provider register --namespace Microsoft.ContainerService --wait
56
56
az provider register --namespace Microsoft.KubernetesConfiguration --wait
57
57
```
58
58
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
+
59
65
## Create a resource group
60
66
61
67
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
162
168
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.
163
169
164
170
```azurecli-interactive
165
-
az aks nodepool update --resource-group <resourcegroup> --cluster-name <clustername> --name <nodepoolname> --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
166
172
```
167
173
168
174
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
200
206
201
207
## Install Azure Container Storage
202
208
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.
204
210
205
211
During installation, you might be asked to install the `k8s-extension`. Select **Y**.
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