diff --git a/pkg/chartutil/jsonschema.go b/pkg/chartutil/jsonschema.go index eeb535afe..c0e1f6bcf 100644 --- a/pkg/chartutil/jsonschema.go +++ b/pkg/chartutil/jsonschema.go @@ -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