Merge pull request #13117 from sidkmenon/sm/proxy-tls

Fix: add proxy support when mTLS configured on helm install/upgrade
pull/11340/merge
Matt Farina 6 months ago committed by GitHub
commit b3b6479e4c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -156,6 +156,7 @@ func NewRegistryClientWithTLS(out io.Writer, certFile, keyFile, caFile string, i
ClientOptHTTPClient(&http.Client{ ClientOptHTTPClient(&http.Client{
Transport: &http.Transport{ Transport: &http.Transport{
TLSClientConfig: tlsConf, TLSClientConfig: tlsConf,
Proxy: http.ProxyFromEnvironment,
}, },
}), }),
) )

Loading…
Cancel
Save