Skip to content

Commit e492a27

Browse files
authored
Merge pull request #184488 from miwithro/patch-111
Update private-clusters.md
2 parents a28dd8b + cd55cc6 commit e492a27

File tree

1 file changed

+2
-36
lines changed

1 file changed

+2
-36
lines changed

articles/aks/private-clusters.md

Lines changed: 2 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -97,45 +97,11 @@ The following parameters can be leveraged to configure Private DNS Zone.
9797
```azurecli-interactive
9898
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]
9999
```
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
101101

102102
Prerequisites:
103103

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.
139105

140106
### Create a private AKS cluster with Custom Private DNS Zone or Private DNS SubZone
141107

0 commit comments

Comments
 (0)