added option --insecure-skip-tls-verify for helm install, addresses #7875

Signed-off-by: Matthias Riegler <matthias.riegler@taotesting.com>
pull/8227/head
Matthias Riegler 5 years ago committed by Vlad Fratila
parent bf5da89c1f
commit afc76a45e5

@ -647,6 +647,7 @@ func (c *ChartPathOptions) LocateChart(name string, settings *cli.EnvSettings) (
Options: []getter.Option{ Options: []getter.Option{
getter.WithBasicAuth(c.Username, c.Password), getter.WithBasicAuth(c.Username, c.Password),
getter.WithTLSClientConfig(c.CertFile, c.KeyFile, c.CaFile), getter.WithTLSClientConfig(c.CertFile, c.KeyFile, c.CaFile),
getter.WithInsecureSkipVerifyTLS(c.InsecureSkipTLSverify),
}, },
RepositoryConfig: settings.RepositoryConfig, RepositoryConfig: settings.RepositoryConfig,
RepositoryCache: settings.RepositoryCache, RepositoryCache: settings.RepositoryCache,

Loading…
Cancel
Save