@@ -25,25 +25,25 @@ schedule.
2525> ` local-path-provisioner ` does ** not** support ` ReadWriteMany ` .
2626> Use ` ReadWriteOnce ` (this chart default) unless you use a RWX-capable storage backend.
2727
28- ## Optional: Proxy configuration for assets job
28+ ## Optional: Proxy configuration
2929
30- Proxy values are configured via ` values.yaml ` (not hardcoded in templates).
30+ Configure Proxy Settings (If behind a proxy)
3131
32- ``` yaml
33- assets :
34- proxy :
35- enabled : true
36- httpProxy : " http://your-proxy:3128"
37- httpsProxy : " http://your-proxy:3128"
38- noProxy : " localhost,127.0.0.1,.svc,.cluster.local"
32+ If you are deploying in a proxy environment, also update the proxy settings in the same values.yaml file:
33+ ``` bash
34+ http_proxy: " http://your-proxy-server:port"
35+ https_proxy: " http://your-proxy-server:port"
36+ no_proxy: " localhost,127.0.0.1,.local,.cluster.local"
3937```
38+ Replace your-proxy-server: port with your actual proxy server details.
39+
4040
4141Set via CLI if needed:
4242
4343``` bash
4444--set assets.proxy.enabled=true \
45- --set assets.proxy.httpProxy=http://your-proxy:3128 \
46- --set assets.proxy.httpsProxy=http://your-proxy:3128 \
45+ --set assets.proxy.httpProxy=http://your-proxy-server:port \
46+ --set assets.proxy.httpsProxy=http://your-proxy-server:port \
4747--set assets.proxy.noProxy=localhost,127.0.0.1,.svc,.cluster.local
4848```
4949
0 commit comments