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/dapr.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,24 +43,22 @@ The Dapr extension uses the same support window as AKS. For more, see the [Kuber
43
43
- If you don't have one already, you need to create an [AKS cluster][deploy-cluster].
44
44
45
45
46
-
### Register the `Extensions`, `AKS-ExtensionManager` and `AKS-Dapr` preview features
46
+
### Register the `AKS-ExtensionManager` and `AKS-Dapr` preview features
47
47
48
48
[!INCLUDE [preview features callout](./includes/preview/preview-callout.md)]
49
49
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.
51
51
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:
53
53
54
54
```azurecli-interactive
55
-
az feature register --namespace "Microsoft.KubernetesConfiguration" --name "Extensions"
56
55
az feature register --namespace "Microsoft.ContainerService" --name "AKS-ExtensionManager"
57
56
az feature register --namespace "Microsoft.ContainerService" --name "AKS-Dapr"
58
57
```
59
58
60
59
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:
61
60
62
61
```azurecli-interactive
63
-
az feature list -o table --query "[?contains(name, 'Microsoft.KubernetesConfiguration/Extensions')].{Name:name,State:properties.state}"
64
62
az feature list -o table --query "[?contains(name, 'Microsoft.ContainerService/AKS-ExtensionManager')].{Name:name,State:properties.state}"
65
63
az feature list -o table --query "[?contains(name, 'Microsoft.ContainerService/AKS-Dapr')].{Name:name,State:properties.state}"
0 commit comments