Skip to content

Commit a7f15bf

Browse files
author
Justin Davies
committed
REmove ARM64 preview tags
1 parent 8a3e556 commit a7f15bf

File tree

1 file changed

+1
-36
lines changed

1 file changed

+1
-36
lines changed

articles/aks/use-multiple-node-pools.md

Lines changed: 1 addition & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -120,45 +120,10 @@ The following example output shows that *mynodepool* has been successfully creat
120120
> [!TIP]
121121
> 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.
122122
123-
### Add an ARM64 node pool (preview)
123+
### Add an ARM64 node pool
124124

125125
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].
126126

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-
162127
Use `az aks nodepool add` command to add an ARM64 node pool.
163128

164129
```azurecli

0 commit comments

Comments
 (0)