Merge pull request #3715 from bacongobbler/fix-get-manifest

fix `helm get manifest` context deadline exceeded error
pull/3868/head
Matthew Fisher 7 years ago committed by GitHub
commit 8981575082
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -55,9 +55,7 @@ func newGetManifestCmd(client helm.Interface, out io.Writer) *cobra.Command {
return errReleaseRequired
}
get.release = args[0]
if get.client == nil {
get.client = helm.NewClient(helm.Host(settings.TillerHost))
}
get.client = ensureHelmClient(get.client)
return get.run()
},
}

Loading…
Cancel
Save