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
+26-21Lines changed: 26 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,12 @@
2
2
title: Private Azure Kubernetes Service cluster
3
3
description: Learn how to create a private Azure Kubernetes Service (AKS) cluster
4
4
services: container-service
5
-
author: saudas
6
-
manager: saudas
5
+
author: mlearned
7
6
8
7
ms.service: container-service
9
8
ms.topic: article
10
9
ms.date: 12/10/2019
11
-
ms.author: saudas
10
+
ms.author: mlearned
12
11
---
13
12
14
13
# Public Preview - Private Azure Kubernetes Service cluster
@@ -38,13 +37,15 @@ The communication between the control plane/API server, which is in an AKS-manag
38
37
39
38
## Install latest AKS CLI preview extension
40
39
41
-
You need the **aks-preview0.4.18**extension or later.
40
+
To use private clusters, you need the *aks-preview* CLI extension version 0.4.18 or higher. Install the *aks-preview* Azure CLI extension using the [az extension add][az-extension-add] command, then check for any available updates using the [az extension update][az-extension-update] command::
42
41
43
42
```azurecli-interactive
44
-
az extension update --name aks-preview
45
-
az extension list
46
-
```
43
+
# Install the aks-preview extension
44
+
az extension add --name aks-preview
47
45
46
+
# Update the extension to make sure you have the latest version installed
47
+
az extension update --name aks-preview
48
+
```
48
49
> [!CAUTION]
49
50
> When you register a feature on a subscription, you can't currently un-register that feature. After you enable some preview features, defaults may be used for all AKS clusters then created in the subscription. Don't enable preview features on production subscriptions. Use a separate subscription to test preview features and gather feedback.
50
51
@@ -74,17 +75,18 @@ az aks create -n <private-cluster-name> -g <private-cluster-resource-group> --lo
74
75
Where --enable-private-cluster is a mandatory flag for a private cluster
0 commit comments