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/aks/use-multiple-node-pools.md
+1-36Lines changed: 1 addition & 36 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -120,45 +120,10 @@ The following example output shows that *mynodepool* has been successfully creat
120
120
> [!TIP]
121
121
> If no *VmSize* is specified when you add a node pool, the default size is *Standard_D2s_v3* for Windows node pools and *Standard_DS2_v2* for Linux node pools. If no *OrchestratorVersion* is specified, it defaults to the same version as the control plane.
122
122
123
-
### Add an ARM64 node pool (preview)
123
+
### Add an ARM64 node pool
124
124
125
125
The ARM64 processor provides low power compute for your Kubernetes workloads. To create an ARM64 node pool, you will need to choose an [ARM capable instance SKU][arm-sku-vm].
126
126
127
-
[!INCLUDE [preview features callout](./includes/preview/preview-callout.md)]
128
-
129
-
#### Install the `aks-preview` Azure CLI
130
-
131
-
You also need the *aks-preview* Azure CLI extension version 0.5.23 or later. Install the *aks-preview* Azure CLI extension by using the [az extension add][az-extension-add] command. Or install any available updates by using the [az extension update][az-extension-update] command.
132
-
133
-
```azurecli-interactive
134
-
# Install the aks-preview extension
135
-
az extension add --name aks-preview
136
-
# Update the extension to make sure you have the latest version installed
137
-
az extension update --name aks-preview
138
-
```
139
-
140
-
#### Register the `AKSARM64Preview` preview feature
141
-
142
-
To use the feature, you must also enable the `AKSARM64Preview` feature flag on your subscription.
143
-
144
-
Register the `AKSARM64Preview` feature flag by using the [az feature register][az-feature-register] command, as shown in the following example:
145
-
146
-
```azurecli-interactive
147
-
az feature register --namespace "Microsoft.ContainerService" --name "AKSARM64Preview"
148
-
```
149
-
150
-
It takes a few minutes for the status to show *Registered*. Verify the registration status by using the [az feature list][az-feature-list] command:
151
-
152
-
```azurecli-interactive
153
-
az feature list -o table --query "[?contains(name, 'Microsoft.ContainerService/AKSARM64Preview')].{Name:name,State:properties.state}"
154
-
```
155
-
156
-
When ready, refresh the registration of the *Microsoft.ContainerService* resource provider by using the [az provider register][az-provider-register] command:
157
-
158
-
```azurecli-interactive
159
-
az provider register --namespace Microsoft.ContainerService
160
-
```
161
-
162
127
Use `az aks nodepool add` command to add an ARM64 node pool.
0 commit comments