mirror of
https://github.com/helm/helm.git
synced 2026-05-28 04:35:48 -04:00
fix(helm-lint): Add TLSClientConfig
Signed-off-by: Isaiah Lewis <isaiah@roof12.com>
(cherry picked from commit fb12b44493)
This commit is contained in:
parent
854370978e
commit
d33ac5e44b
1 changed files with 2 additions and 0 deletions
|
|
@ -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…
Reference in a new issue