Package is the action for packaging a chart. It provides the implementation of 'helm package'.
| 39 | // |
| 40 | // It provides the implementation of 'helm package'. |
| 41 | type 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 | |
| 63 | const ( |
| 64 | passPhraseFileStdin = "-" |
nothing calls this directly
no outgoing calls
no test coverage detected