Make update to Fleet proxy doc in v2.6

This commit is contained in:
Catherine Luse
2021-06-18 13:17:44 -07:00
parent 4d9c419c48
commit 7fc2afd970
@@ -17,12 +17,12 @@ For private nodes or private clusters, the environment variables need to be set
# Required Environment Variables
When adding Fleet agent environment variables for the proxy, replace PROXY_IP with your private proxy IP.
When adding Fleet agent environment variables for the proxy, replace <PROXY_IP> with your private proxy IP.
| Variable Name | Value |
|------------------|--------|
| `HTTP_PROXY` | http://PROXY_IP:8888 |
| `HTTPS_PROXY` | http://PROXY_IP:8888
| `HTTP_PROXY` | http://<PROXY_IP>:8888 |
| `HTTPS_PROXY` | http://<PROXY_IP>:8888
| `NO_PROXY` | 127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16,.svc,.cluster.local |
# Setting Environment Variables in the Rancher UI
@@ -52,4 +52,4 @@ export HTTP_PROXY=http://${proxy_private_ip}:8888
export HTTPS_PROXY=http://${proxy_private_ip}:8888
export NO_PROXY=127.0.0.0/8,10.0.0.0/8,172.16.0.0/12,192.168.0.0/16,.svc,.cluster.local
export KUBECONFIG=/etc/rancher/k3s/k3s.yaml
```
```