We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e639e2a commit 183ba31Copy full SHA for 183ba31
1 file changed
client/controller/client/http.go
@@ -21,6 +21,7 @@ func CreateHTTPClient(sslVerify bool) *http.Client {
21
tr := &http.Transport{
22
TLSClientConfig: &tls.Config{InsecureSkipVerify: !sslVerify},
23
DisableKeepAlives: true,
24
+ Proxy: http.ProxyFromEnvironment,
25
}
26
return &http.Client{Transport: tr}
27
0 commit comments