MCPcopy
hub / github.com/helm/helm / Package

Struct Package

pkg/action/package.go:41–61  ·  view source on GitHub ↗

Package is the action for packaging a chart. It provides the implementation of 'helm package'.

Source from the content-addressed store, hash-verified

39//
40// It provides the implementation of 'helm package'.
41type Package struct {
42 Sign bool
43 Key string
44 Keyring string
45 PassphraseFile string
46 cachedPassphrase []byte
47 Version string
48 AppVersion string
49 Destination string
50 DependencyUpdate bool
51
52 RepositoryConfig string
53 RepositoryCache string
54 PlainHTTP bool
55 Username string
56 Password string
57 CertFile string
58 KeyFile string
59 CaFile string
60 InsecureSkipTLSVerify bool
61}
62
63const (
64 passPhraseFileStdin = "-"

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected