github.com/darkowlzz/helm@v2.5.1-0.20171213183701-6707fe0468d4+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-system")
    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 "~/.helm")
    37        --host string               address of Tiller. Overrides $HELM_HOST
    38        --kube-context string       name of the kubeconfig context to use
    39        --kubeconfig string         path to kubeconfig file. Overrides $KUBECONFIG
    40        --tiller-namespace string   namespace of Tiller (default "kube-system")
    41  ```
    42  
    43  ### SEE ALSO
    44  * [helm completion](helm_completion.md)	 - Generate autocompletions script for the specified shell (bash or zsh)
    45  * [helm create](helm_create.md)	 - create a new chart with the given name
    46  * [helm delete](helm_delete.md)	 - given a release name, delete the release from Kubernetes
    47  * [helm dependency](helm_dependency.md)	 - manage a chart's dependencies
    48  * [helm fetch](helm_fetch.md)	 - download a chart from a repository and (optionally) unpack it in local directory
    49  * [helm get](helm_get.md)	 - download a named release
    50  * [helm history](helm_history.md)	 - fetch release history
    51  * [helm home](helm_home.md)	 - displays the location of HELM_HOME
    52  * [helm init](helm_init.md)	 - initialize Helm on both client and server
    53  * [helm inspect](helm_inspect.md)	 - inspect a chart
    54  * [helm install](helm_install.md)	 - install a chart archive
    55  * [helm lint](helm_lint.md)	 - examines a chart for possible issues
    56  * [helm list](helm_list.md)	 - list releases
    57  * [helm package](helm_package.md)	 - package a chart directory into a chart archive
    58  * [helm plugin](helm_plugin.md)	 - add, list, or remove Helm plugins
    59  * [helm repo](helm_repo.md)	 - add, list, remove, update, and index chart repositories
    60  * [helm reset](helm_reset.md)	 - uninstalls Tiller from a cluster
    61  * [helm rollback](helm_rollback.md)	 - roll back a release to a previous revision
    62  * [helm search](helm_search.md)	 - search for a keyword in charts
    63  * [helm serve](helm_serve.md)	 - start a local http web server
    64  * [helm status](helm_status.md)	 - displays the status of the named release
    65  * [helm template](helm_template.md)	 - locally render templates
    66  * [helm test](helm_test.md)	 - test a release
    67  * [helm upgrade](helm_upgrade.md)	 - upgrade a release
    68  * [helm verify](helm_verify.md)	 - verify that a chart at the given path has been signed and is valid
    69  * [helm version](helm_version.md)	 - print the client/server version information
    70  
    71  ###### Auto generated by spf13/cobra on 7-Nov-2017