Skip to content

Commit eb564c6

Browse files
committed
removed unneeded preview feature registrations
1 parent 1b1305c commit eb564c6

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

articles/aks/dapr.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,24 +43,22 @@ The Dapr extension uses the same support window as AKS. For more, see the [Kuber
4343
- If you don't have one already, you need to create an [AKS cluster][deploy-cluster].
4444

4545

46-
### Register the `Extensions`, `AKS-ExtensionManager` and `AKS-Dapr` preview features
46+
### Register the `AKS-ExtensionManager` and `AKS-Dapr` preview features
4747

4848
[!INCLUDE [preview features callout](./includes/preview/preview-callout.md)]
4949

50-
To create an AKS cluster that can use the Dapr extension, you must enable the `Extensions`, `AKS-ExtensionManager`, and `AKS-Dapr` feature flags on your subscription.
50+
To create an AKS cluster that can use the Dapr extension, you must enable the `AKS-ExtensionManager` and `AKS-Dapr` feature flags on your subscription.
5151

52-
Register the `Extensions`, `AKS-ExtensionManager`, and `AKS-Dapr` feature flags by using the [az feature register][az-feature-register] command, as shown in the following example:
52+
Register the `AKS-ExtensionManager` and `AKS-Dapr` feature flags by using the [az feature register][az-feature-register] command, as shown in the following example:
5353

5454
```azurecli-interactive
55-
az feature register --namespace "Microsoft.KubernetesConfiguration" --name "Extensions"
5655
az feature register --namespace "Microsoft.ContainerService" --name "AKS-ExtensionManager"
5756
az feature register --namespace "Microsoft.ContainerService" --name "AKS-Dapr"
5857
```
5958

6059
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:
6160

6261
```azurecli-interactive
63-
az feature list -o table --query "[?contains(name, 'Microsoft.KubernetesConfiguration/Extensions')].{Name:name,State:properties.state}"
6462
az feature list -o table --query "[?contains(name, 'Microsoft.ContainerService/AKS-ExtensionManager')].{Name:name,State:properties.state}"
6563
az feature list -o table --query "[?contains(name, 'Microsoft.ContainerService/AKS-Dapr')].{Name:name,State:properties.state}"
6664
```

0 commit comments

Comments
 (0)