github.com/migueleliasweb/helm@v2.6.1+incompatible/docs/helm/helm.md (about) 1 ## helm 2 3 The Helm package manager for Kubernetes. 4 5 ### Synopsis 6 7 8 The Kubernetes package manager 9 10 To begin working with Helm, run the 'helm init' command: 11 12 $ helm init 13 14 This will install Tiller to your running Kubernetes cluster. 15 It will also set up any necessary local configuration. 16 17 Common actions from this point include: 18 19 - helm search: search for charts 20 - helm fetch: download a chart to your local directory to view 21 - helm install: upload the chart to Kubernetes 22 - helm list: list releases of charts 23 24 Environment: 25 $HELM_HOME set an alternative location for Helm files. By default, these are stored in ~/.helm 26 $HELM_HOST set an alternative Tiller host. The format is host:port 27 $HELM_NO_PLUGINS disable plugins. Set HELM_NO_PLUGINS=1 to disable plugins. 28 $TILLER_NAMESPACE set an alternative Tiller namespace (default "kube-namespace") 29 $KUBECONFIG set an alternative Kubernetes configuration file (default "~/.kube/config") 30 31 32 ### Options 33 34 ``` 35 --debug enable verbose output 36 --home string location of your Helm config. Overrides $HELM_HOME (default "$HOME/.helm") 37 --host string address of Tiller. Overrides $HELM_HOST 38 --kube-context string name of the kubeconfig context to use 39 --tiller-namespace string namespace of Tiller (default "kube-system") 40 ``` 41 42 ### SEE ALSO 43 * [helm completion](helm_completion.md) - Generate autocompletions script for the specified shell (bash or zsh) 44 * [helm create](helm_create.md) - create a new chart with the given name 45 * [helm delete](helm_delete.md) - given a release name, delete the release from Kubernetes 46 * [helm dependency](helm_dependency.md) - manage a chart's dependencies 47 * [helm fetch](helm_fetch.md) - download a chart from a repository and (optionally) unpack it in local directory 48 * [helm get](helm_get.md) - download a named release 49 * [helm history](helm_history.md) - fetch release history 50 * [helm home](helm_home.md) - displays the location of HELM_HOME 51 * [helm init](helm_init.md) - initialize Helm on both client and server 52 * [helm inspect](helm_inspect.md) - inspect a chart 53 * [helm install](helm_install.md) - install a chart archive 54 * [helm lint](helm_lint.md) - examines a chart for possible issues 55 * [helm list](helm_list.md) - list releases 56 * [helm package](helm_package.md) - package a chart directory into a chart archive 57 * [helm plugin](helm_plugin.md) - add, list, or remove Helm plugins 58 * [helm repo](helm_repo.md) - add, list, remove, update, and index chart repositories 59 * [helm reset](helm_reset.md) - uninstalls Tiller from a cluster 60 * [helm rollback](helm_rollback.md) - roll back a release to a previous revision 61 * [helm search](helm_search.md) - search for a keyword in charts 62 * [helm serve](helm_serve.md) - start a local http web server 63 * [helm status](helm_status.md) - displays the status of the named release 64 * [helm test](helm_test.md) - test a release 65 * [helm upgrade](helm_upgrade.md) - upgrade a release 66 * [helm verify](helm_verify.md) - verify that a chart at the given path has been signed and is valid 67 * [helm version](helm_version.md) - print the client/server version information 68 69 ###### Auto generated by spf13/cobra on 23-Jun-2017