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/container-storage-aks-quickstart.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ When you create a resource group, you're prompted to specify a location. This lo
62
62
* The storage location of your resource group metadata.
63
63
* Where your resources will run in Azure if you don't specify another region during resource creation.
64
64
65
-
Create a resource group using the `az group create` command. Replace `<resource-group-name>` with the name of the resource group you want to create, and replace `<location>` with an Azure region such as *eastus*, *westus2*, *westus3*, or *westeurope*.
65
+
Create a resource group using the `az group create` command. Replace `<resource-group-name>` with the name of the resource group you want to create, and replace `<location>` with an Azure region such as *eastus*, *westus2*, *westus3*, or *westeurope*. See this [list of Azure regions](container-storage-introduction.md#regional-availability) where Azure Container Storage is available.
66
66
67
67
```azurecli-interactive
68
68
az group create --name <resource-group-name> --location <location>
@@ -118,7 +118,7 @@ Optional storage pool parameters:
118
118
| --storage-pool-option | NVMe |
119
119
120
120
```azurecli-interactive
121
-
az aks create --n <cluster-name> --g <resource-group-name> --node-vm-size Standard_D4s_v3 --node-count 3 --enable-azure-container-storage <storage-pool-type>
121
+
az aks create -n <cluster-name> -g <resource-group-name> --node-vm-size Standard_D4s_v3 --node-count 3 --enable-azure-container-storage <storage-pool-type>
122
122
```
123
123
124
124
The deployment will take 10-15 minutes to complete.
@@ -131,7 +131,7 @@ If you already have an AKS cluster that meets the [VM requirements](#choose-a-vm
131
131
> **If you created your AKS cluster using the Azure portal:** The cluster will likely have a user node pool and a system/agent node pool. However, if your cluster consists of only a system node pool, which is the case with test/dev clusters created with the Azure portal, you'll need to first [add a new user node pool](../../aks/create-node-pools.md#add-a-node-pool) and then label it. This is because when you create an AKS cluster using the Azure portal, a taint `CriticalAddOnsOnly` is added to the system/agent nodepool, which blocks installation of Azure Container Storage on the system node pool. This taint isn't added when an AKS cluster is created using Azure CLI.
132
132
133
133
```azurecli-interactive
134
-
az aks update --n <cluster-name> --g <resource-group-name> --enable-azure-container-storage <storage-pool-type>
134
+
az aks update -n <cluster-name> -g <resource-group-name> --enable-azure-container-storage <storage-pool-type>
135
135
```
136
136
137
137
The deployment will take 10-15 minutes to complete.
0 commit comments