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