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/draft.md
+7-27Lines changed: 7 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,30 +28,16 @@ Draft has the following commands to help ease your development on Kubernetes:
28
28
- Install the latest version of the [Azure CLI](/cli/azure/install-azure-cli-windows) and the *aks-preview* extension.
29
29
- If you don't have one already, you need to create an [AKS cluster][deploy-cluster].
30
30
31
-
### Install the `AKS-Draft` extension preview
31
+
### Install the `aks-preview` Azure CLI extension
32
32
33
33
[!INCLUDE [preview features callout](./includes/preview/preview-callout.md)]
34
34
35
-
To create an AKS cluster that can use the Draft extension, you must enable the `AKS-ExtensionManager` and `AKS-Draft` feature flags on your subscription.
36
-
37
-
Register the `AKS-ExtensionManager` and `AKS-Draft` feature flags by using the [az feature register][az-feature-register] command, as shown in the following example:
38
-
39
35
```azurecli-interactive
40
-
az extension add --name draft
41
-
```
42
-
43
-
### Set up the Azure CLI extension for cluster extensions
44
-
45
-
You'll also need the `k8s-extension` Azure CLI extension, which can be installed by running the following command:
46
-
47
-
```azurecli-interactive
48
-
az extension add --name k8s-extension
49
-
```
36
+
# Install the aks-preview extension
37
+
az extension add --name aks-preview
50
38
51
-
If the `k8s-extension` extension is already installed, you can update it to the latest version using the following command:
52
-
53
-
```azurecli-interactive
54
-
az extension update --name k8s-extension
39
+
# Update the extension to make sure you have the latest version installed
40
+
az extension update --name aks-preview
55
41
```
56
42
57
43
## Create artifacts using `draft create`
@@ -104,14 +90,6 @@ You can also run the command on a specific directory using the `--destination` f
104
90
az aks draft up --destination /Workspaces/ContosoAir
105
91
```
106
92
107
-
## Delete the extension
108
-
109
-
To delete the extension and remove Draft from your AKS cluster, you can use the following command:
0 commit comments