github.com/koderover/helm@v2.17.0+incompatible/docs/helm/helm_package.md (about) 1 ## helm package 2 3 Package a chart directory into a chart archive 4 5 ### Synopsis 6 7 8 This command packages a chart into a versioned chart archive file. If a path 9 is given, this will look at that path for a chart (which must contain a 10 Chart.yaml file) and then package that directory. 11 12 If no path is given, this will look in the present working directory for a 13 Chart.yaml file, and (if found) build the current directory into a chart. 14 15 Versioned chart archives are used by Helm package repositories. 16 17 18 ``` 19 helm package [flags] [CHART_PATH] [...] 20 ``` 21 22 ### Options 23 24 ``` 25 --app-version string Set the appVersion on the chart to this version 26 -u, --dependency-update Update dependencies from "requirements.yaml" to dir "charts/" before packaging 27 -d, --destination string Location to write the chart. (default ".") 28 -h, --help help for package 29 --key string Name of the key to use when signing. Used if --sign is true 30 --keyring string Location of a public keyring (default "~/.gnupg/pubring.gpg") 31 --save Save packaged chart to local chart repository (default true) 32 --sign Use a PGP private key to sign this package 33 --version string Set the version on the chart to this semver version 34 ``` 35 36 ### Options inherited from parent commands 37 38 ``` 39 --debug Enable verbose output 40 --home string Location of your Helm config. Overrides $HELM_HOME (default "~/.helm") 41 --host string Address of Tiller. Overrides $HELM_HOST 42 --kube-context string Name of the kubeconfig context to use 43 --kubeconfig string Absolute path of the kubeconfig file to be used 44 --tiller-connection-timeout int The duration (in seconds) Helm will wait to establish a connection to Tiller (default 300) 45 --tiller-namespace string Namespace of Tiller (default "kube-system") 46 ``` 47 48 ### SEE ALSO 49 50 * [helm](helm.md) - The Helm package manager for Kubernetes. 51 52 ###### Auto generated by spf13/cobra on 16-May-2019