Skip to content

Commit 00ee4eb

Browse files
committed
fixed formatting and wording
1 parent eac1aab commit 00ee4eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/aks/http-proxy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Example input:
7676
}
7777
```
7878

79-
Create a file and provide values for *httpProxy*, *httpsProxy*, and *noProxy*. If your environment requires it, also provide a *trustedCa* value. Next, deploy a cluster, passing in your filename using the `http-proxy-config` flag.
79+
Create a file and provide values for *httpProxy*, *httpsProxy*, and *noProxy*. If your environment requires it, provide a value for *trustedCa*. Next, deploy a cluster, passing in your filename using the `http-proxy-config` flag.
8080

8181
```azurecli
8282
az aks create -n $clusterName -g $resourceGroup --http-proxy-config aks-proxy-config.json
@@ -102,13 +102,13 @@ Deploying an AKS cluster with an HTTP proxy configured using an ARM template is
102102
}
103103
```
104104

105-
In your template, provide values for *httpProxy*, *httpsProxy*, and *noProxy*. If necessary, also provide a value for `*trustedCa*. Deploy the template, and your cluster should initialize with your HTTP proxy configured on the nodes.
105+
In your template, provide values for *httpProxy*, *httpsProxy*, and *noProxy*. If necessary, provide a value for *trustedCa*. Deploy the template, and your cluster should initialize with your HTTP proxy configured on the nodes.
106106

107107
## Handling CA rollover
108108

109109
Values for *httpProxy*, *httpsProxy*, and *noProxy* can't be changed after cluster creation. However, to support rolling CA certs, the value for *trustedCa* can be changed and applied to the cluster with the [az aks update][az-aks-update] command.
110110

111-
For example, assuming a new file has been created with the base64 encoded string of the new CA cert called *aks-proxy-config-2.json*, the following action will update the cluster:
111+
For example, assuming a new file has been created with the base64 encoded string of the new CA cert called *aks-proxy-config-2.json*, the following action updates the cluster:
112112

113113
```azurecli
114114
az aks update -n $clusterName -g $resourceGroup --http-proxy-config aks-proxy-config-2.json

0 commit comments

Comments
 (0)