Skip to content

Commit 47e354a

Browse files
authored
Update proxy-installs.md explain parameters (#1080)
1 parent f8a4845 commit 47e354a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/markdown-pages/install-with-kurl/proxy-installs.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,22 @@ spec:
1616
proxyAddress: http://10.128.0.70:3128
1717
additionalNoProxyAddresses:
1818
- .corporate.internal
19+
- 172.28.16.0/24
1920
noProxy: false
2021
```
2122

2223
The proxy configuration will be used to download packages required for the installation script to complete and will be applied to the docker and KOTS add-ons.
2324
The provided proxy will be configured and used for HTTP and HTTPS access.
2425
See [Modifying an Install Using a YAML Patch File](/docs/install-with-kurl#modifying-an-install-using-a-yaml-patch-file-at-runtime) for more details on using patch files.
2526

27+
## Parameters
28+
29+
| Parameter | Type | Description |
30+
|----------------------------|------|-------------|
31+
| `proxyAddress` | string | a URL, including http:// or https:// protocol, of the forward proxy. Both HTTP_PROXY and HTTPS_PROXY will be set to `proxyAddress` in kURL |
32+
| `additionalNoProxyAddresses` | string | a YAML list of all domains, IPs, and CIDR blocks that will be added to the list of NO_PROXY addresses |
33+
| `noProxy` | boolean | if `noProxy` is set to `true` then the other proxy fields in the spec are ignored and the installer does not attempt to do any proxy configuration and will ignore the `HTTP_PROXY`, `HTTPS_PROXY`, and `NO_PROXY` variables that are set in the shell. Defaults to `false` |
34+
2635
## Proxy Environment Variables
2736

2837
If a `proxyAddress` is not configured in the installer spec, the following environment variables will be used instead:

0 commit comments

Comments
 (0)