From d33ac5e44b4eb884d67141b00753817b091054ca Mon Sep 17 00:00:00 2001 From: Isaiah Lewis Date: Mon, 18 Aug 2025 11:35:59 -0700 Subject: [PATCH] fix(helm-lint): Add TLSClientConfig Signed-off-by: Isaiah Lewis (cherry picked from commit fb12b44493eb36e12b1af4804051cca01515f5f3) --- pkg/chartutil/jsonschema.go | 2 ++ 1 file changed, 2 insertions(+) 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