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/private-clusters.md
+2-36Lines changed: 2 additions & 36 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -97,45 +97,11 @@ The following parameters can be leveraged to configure Private DNS Zone.
97
97
```azurecli-interactive
98
98
az aks create -n <private-cluster-name> -g <private-cluster-resource-group> --load-balancer-sku standard --enable-private-cluster --enable-managed-identity --assign-identity <ResourceId> --private-dns-zone [system|none]
99
99
```
100
-
### Create a private AKS cluster with a BYO Private DNS SubZone (Preview)
100
+
### Create a private AKS cluster with a BYO Private DNS SubZone
101
101
102
102
Prerequisites:
103
103
104
-
* Azure CLI >= 2.29.0 or Azure CLI with aks-preview extension 0.5.34 or later.
105
-
106
-
### Register the `EnablePrivateClusterSubZone` preview feature
107
-
108
-
[!INCLUDE [preview features callout](./includes/preview/preview-callout.md)]
109
-
110
-
To create an AKS private cluster with SubZone, you must enable the `EnablePrivateClusterSubZone` feature flag on your subscription.
111
-
112
-
Register the `EnablePrivateClusterSubZone` feature flag by using the [az feature register][az-feature-register] command, as shown in the following example:
113
-
114
-
```azurecli-interactive
115
-
az feature register --namespace "Microsoft.ContainerService" --name "EnablePrivateClusterSubZone"
116
-
```
117
-
118
-
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:
119
-
120
-
```azurecli-interactive
121
-
az feature list -o table --query "[?contains(name, 'Microsoft.ContainerService/EnablePrivateClusterSubZone')].{Name:name,State:properties.state}"
122
-
```
123
-
124
-
When ready, refresh the registration of the *Microsoft.ContainerService* resource provider by using the [az provider register][az-provider-register] command:
125
-
126
-
```azurecli-interactive
127
-
az provider register --namespace Microsoft.ContainerService
128
-
```
129
-
130
-
### Install the aks-preview CLI extension
131
-
132
-
```azurecli-interactive
133
-
# Install the aks-preview extension
134
-
az extension add --name aks-preview
135
-
136
-
# Update the extension to make sure you have the latest version installed
137
-
az extension update --name aks-preview
138
-
```
104
+
* Azure CLI >= 2.32.0 or later.
139
105
140
106
### Create a private AKS cluster with Custom Private DNS Zone or Private DNS SubZone
0 commit comments