github.com/migueleliasweb/helm@v2.6.1+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 -u, --dependency-update update dependencies from "requirements.yaml" to dir "charts/" before packaging 27 -d, --destination string location to write the chart. (default ".") 28 --key string name of the key to use when signing. Used if --sign is true 29 --keyring string location of a public keyring (default "~/.gnupg/pubring.gpg") 30 --save save packaged chart to local chart repository (default true) 31 --sign use a PGP private key to sign this package 32 --version string set the version on the chart to this semver version 33 ``` 34 35 ### Options inherited from parent commands 36 37 ``` 38 --debug enable verbose output 39 --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") 40 --host string address of Tiller. Overrides $HELM_HOST 41 --kube-context string name of the kubeconfig context to use 42 --tiller-namespace string namespace of Tiller (default "kube-system") 43 ``` 44 45 ### SEE ALSO 46 * [helm](helm.md) - The Helm package manager for Kubernetes. 47 48 ###### Auto generated by spf13/cobra on 23-Jun-2017