fix: add .celestium.life to NO_PROXY in Kyverno build pod policy
The Kyverno policy injected HTTP_PROXY into build pods but NO_PROXY was missing .celestium.life. Docker login to registry.celestium.life was going through the Squid proxy which does SSL interception, causing auth failures.
This commit is contained in:
@@ -37,9 +37,9 @@ spec:
|
||||
- name: HTTPS_PROXY
|
||||
value: "http://192.168.42.1:3128"
|
||||
- name: NO_PROXY
|
||||
value: "10.0.0.0/8,192.168.0.0/16,127.0.0.1,localhost,.local"
|
||||
value: "10.0.0.0/8,192.168.0.0/16,127.0.0.1,localhost,.local,.celestium.life"
|
||||
- name: no_proxy
|
||||
value: "10.0.0.0/8,192.168.0.0/16,127.0.0.1,localhost,.local"
|
||||
value: "10.0.0.0/8,192.168.0.0/16,127.0.0.1,localhost,.local,.celestium.life"
|
||||
- name: SSL_CERT_FILE
|
||||
value: "/etc/ssl/certs/proxy-ca.crt"
|
||||
volumeMounts:
|
||||
|
||||
Reference in New Issue
Block a user