fix(helm-lint): Add TLSClientConfig

Signed-off-by: Isaiah Lewis <isaiah@roof12.com>
(cherry picked from commit fb12b44493)
(cherry picked from commit d33ac5e44b)
release-3.18
Isaiah Lewis 1 month ago committed by Matt Farina
parent b9180e674f
commit b79a4212e8
No known key found for this signature in database
GPG Key ID: 92C44A3D421FF7F9

@ -18,6 +18,7 @@ package chartutil
import (
"bytes"
"crypto/tls"
"errors"
"fmt"
"strings"
@ -62,6 +63,7 @@ func newHTTPURLLoader() *HTTPURLLoader {
Timeout: 15 * time.Second,
Transport: &http.Transport{
Proxy: http.ProxyFromEnvironment,
TLSClientConfig: &tls.Config{},
},
})
return &httpLoader

Loading…
Cancel
Save