Skip to content

Commit a1a9a60

Browse files
authored
Merge pull request #176649 from Nickomang/master
Added extension installation instructions to HTTP Proxy
2 parents e405437 + 2455825 commit a1a9a60

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

articles/aks/http-proxy.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,17 @@ By default, *httpProxy*, *httpsProxy*, and *trustedCa* have no value.
3535
* An Azure subscription. If you don't have an Azure subscription, you can create a [free account](https://azure.microsoft.com/free).
3636
* [Azure CLI installed](/cli/azure/install-azure-cli).
3737

38+
### Install the `aks-preview` Azure CLI
39+
40+
You also need the *aks-preview* Azure CLI extension version 0.5.25 or later. Install the *aks-preview* Azure CLI extension by using the [az extension add][az-extension-add] command. Or install any available updates by using the [az extension update][az-extension-update] command.
41+
42+
```azurecli-interactive
43+
# Install the aks-preview extension
44+
az extension add --name aks-preview
45+
# Update the extension to make sure you have the latest version installed
46+
az extension update --name aks-preview
47+
```
48+
3849
### Register the `HTTPProxyConfigPreview` preview feature
3950

4051
To use the feature, you must also enable the `HTTPProxyConfigPreview` feature flag on your subscription.
@@ -142,4 +153,6 @@ az aks update -n $clusterName -g $resourceGroup --http-proxy-config aks-proxy-co
142153
[az-aks-update]: /cli/azure/aks#az_aks_update
143154
[az-feature-register]: /cli/azure/feature#az_feature_register
144155
[az-feature-list]: /cli/azure/feature#az_feature_list
145-
[az-provider-register]: /cli/azure/provider#az_provider_register
156+
[az-provider-register]: /cli/azure/provider#az_provider_register
157+
[az-extension-add]: /cli/azure/extension#az_extension_add
158+
[az-extension-update]: /cli/azure/extension#az-extension-update

0 commit comments

Comments
 (0)