fix(helm-lint): Add TLSClientConfig

Signed-off-by: Isaiah Lewis <isaiah@roof12.com>
(cherry picked from commit fb12b44493)
This commit is contained in:
Isaiah Lewis 2025-08-18 11:35:59 -07:00 committed by Matt Farina
parent 854370978e
commit d33ac5e44b
No known key found for this signature in database
GPG key ID: 92C44A3D421FF7F9

View file

@ -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