github.com/darkowlzz/helm@v2.5.1-0.20171213183701-6707fe0468d4+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 9 This command packages a chart into a versioned chart archive file. If a path 10 is given, this will look at that path for a chart (which must contain a 11 Chart.yaml file) and then package that directory. 12 13 If no path is given, this will look in the present working directory for a 14 Chart.yaml file, and (if found) build the current directory into a chart. 15 16 Versioned chart archives are used by Helm package repositories. 17 18 19 ``` 20 helm package [flags] [CHART_PATH] [...] 21 ``` 22 23 ### Options 24 25 ``` 26 --app-version string set the appVersion on the chart to this version 27 -u, --dependency-update update dependencies from "requirements.yaml" to dir "charts/" before packaging 28 -d, --destination string location to write the chart. (default ".") 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 path to kubeconfig file. Overrides $KUBECONFIG 44 --tiller-namespace string namespace of Tiller (default "kube-system") 45 ``` 46 47 ### SEE ALSO 48 * [helm](helm.md) - The Helm package manager for Kubernetes. 49 50 ###### Auto generated by spf13/cobra on 24-Nov-2017