github.com/felipejfc/helm@v2.1.2+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 $KUBECONFIG set an alternate Kubernetes configuration file (default "~/.kube/config") 28 29 30 ### Options 31 32 ``` 33 --debug enable verbose output 34 --home string location of your Helm config. Overrides $HELM_HOME (default "/Users/mattbutcher/Code/helm_home") 35 --host string address of tiller. Overrides $HELM_HOST 36 --kube-context string name of the kubeconfig context to use 37 ``` 38 39 ### SEE ALSO 40 * [helm create](helm_create.md) - create a new chart with the given name 41 * [helm delete](helm_delete.md) - given a release name, delete the release from Kubernetes 42 * [helm dependency](helm_dependency.md) - manage a chart's dependencies 43 * [helm fetch](helm_fetch.md) - download a chart from a repository and (optionally) unpack it in local directory 44 * [helm get](helm_get.md) - download a named release 45 * [helm history](helm_history.md) - fetch release history 46 * [helm home](helm_home.md) - displays the location of HELM_HOME 47 * [helm init](helm_init.md) - initialize Helm on both client and server 48 * [helm inspect](helm_inspect.md) - inspect a chart 49 * [helm install](helm_install.md) - install a chart archive 50 * [helm lint](helm_lint.md) - examines a chart for possible issues 51 * [helm list](helm_list.md) - list releases 52 * [helm package](helm_package.md) - package a chart directory into a chart archive 53 * [helm repo](helm_repo.md) - add, list, remove, update, and index chart repositories 54 * [helm rollback](helm_rollback.md) - roll back a release to a previous revision 55 * [helm search](helm_search.md) - search for a keyword in charts 56 * [helm serve](helm_serve.md) - start a local http web server 57 * [helm status](helm_status.md) - displays the status of the named release 58 * [helm upgrade](helm_upgrade.md) - upgrade a release 59 * [helm verify](helm_verify.md) - verify that a chart at the given path has been signed and is valid 60 * [helm version](helm_version.md) - print the client/server version information 61 62 ###### Auto generated by spf13/cobra on 1-Nov-2016