diff --git a/README.md b/README.md index e8db3a4232..46acf7d592 100644 --- a/README.md +++ b/README.md @@ -68,6 +68,7 @@ Organizations below are **officially** using Argo CD. Please send a PR with your 1. [Viaduct](https://www.viaduct.ai/) 1. [Volvo Cars](https://www.volvocars.com/) 1. [Walkbase](https://www.walkbase.com/) +1. [Whitehat Berlin](https://whitehat.berlin) by Guido Maria Serra +Fenaroli 1. [Yieldlab](https://www.yieldlab.de/) ## Documentation diff --git a/util/helm/client.go b/util/helm/client.go index 34447a8d7d..dcf5b8e655 100644 --- a/util/helm/client.go +++ b/util/helm/client.go @@ -188,7 +188,10 @@ func (c *nativeHelmChart) GetIndex() (*Index, error) { if err != nil { return nil, err } - tr := &http.Transport{TLSClientConfig: tlsConf} + tr := &http.Transport{ + Proxy: http.ProxyFromEnvironment, + TLSClientConfig: tlsConf, + } client := http.Client{Transport: tr} resp, err := client.Do(req) if err != nil {