github.com/Beeketing/helm@v2.12.1+incompatible/docs/helm/helm.md (about)

     1  ## helm
     2  
     3  The Helm package manager for Kubernetes.
     4  
     5  ### Synopsis
     6  
     7  The Kubernetes package manager
     8  
     9  To begin working with Helm, run the 'helm init' command:
    10  
    11  	$ helm init
    12  
    13  This will install Tiller to your running Kubernetes cluster.
    14  It will also set up any necessary local configuration.
    15  
    16  Common actions from this point include:
    17  
    18  - helm search:    search for charts
    19  - helm fetch:     download a chart to your local directory to view
    20  - helm install:   upload the chart to Kubernetes
    21  - helm list:      list releases of charts
    22  
    23  Environment:
    24    $HELM_HOME           set an alternative location for Helm files. By default, these are stored in ~/.helm
    25    $HELM_HOST           set an alternative Tiller host. The format is host:port
    26    $HELM_NO_PLUGINS     disable plugins. Set HELM_NO_PLUGINS=1 to disable plugins.
    27    $TILLER_NAMESPACE    set an alternative Tiller namespace (default "kube-system")
    28    $KUBECONFIG          set an alternative Kubernetes configuration file (default "~/.kube/config")
    29    $HELM_TLS_CA_CERT    path to TLS CA certificate used to verify the Helm client and Tiller server certificates (default "$HELM_HOME/ca.pem")
    30    $HELM_TLS_CERT       path to TLS client certificate file for authenticating to Tiller (default "$HELM_HOME/cert.pem")
    31    $HELM_TLS_KEY        path to TLS client key file for authenticating to Tiller (default "$HELM_HOME/key.pem")
    32    $HELM_TLS_VERIFY     enable TLS connection between Helm and Tiller and verify Tiller server certificate (default "false")
    33    $HELM_TLS_ENABLE     enable TLS connection between Helm and Tiller (default "false")
    34    $HELM_KEY_PASSPHRASE set HELM_KEY_PASSPHRASE to the passphrase of your PGP private key. If set, you will not be prompted for
    35                         the passphrase while signing helm charts
    36  
    37  
    38  
    39  ### Options
    40  
    41  ```
    42        --debug                           enable verbose output
    43    -h, --help                            help for helm
    44        --home string                     location of your Helm config. Overrides $HELM_HOME (default "~/.helm")
    45        --host string                     address of Tiller. Overrides $HELM_HOST
    46        --kube-context string             name of the kubeconfig context to use
    47        --kubeconfig string               absolute path to the kubeconfig file to use
    48        --tiller-connection-timeout int   the duration (in seconds) Helm will wait to establish a connection to tiller (default 300)
    49        --tiller-namespace string         namespace of Tiller (default "kube-system")
    50  ```
    51  
    52  ### SEE ALSO
    53  
    54  * [helm completion](helm_completion.md)	 - Generate autocompletions script for the specified shell (bash or zsh)
    55  * [helm create](helm_create.md)	 - create a new chart with the given name
    56  * [helm delete](helm_delete.md)	 - given a release name, delete the release from Kubernetes
    57  * [helm dependency](helm_dependency.md)	 - manage a chart's dependencies
    58  * [helm fetch](helm_fetch.md)	 - download a chart from a repository and (optionally) unpack it in local directory
    59  * [helm get](helm_get.md)	 - download a named release
    60  * [helm history](helm_history.md)	 - fetch release history
    61  * [helm home](helm_home.md)	 - displays the location of HELM_HOME
    62  * [helm init](helm_init.md)	 - initialize Helm on both client and server
    63  * [helm inspect](helm_inspect.md)	 - inspect a chart
    64  * [helm install](helm_install.md)	 - install a chart archive
    65  * [helm lint](helm_lint.md)	 - examines a chart for possible issues
    66  * [helm list](helm_list.md)	 - list releases
    67  * [helm package](helm_package.md)	 - package a chart directory into a chart archive
    68  * [helm plugin](helm_plugin.md)	 - add, list, or remove Helm plugins
    69  * [helm repo](helm_repo.md)	 - add, list, remove, update, and index chart repositories
    70  * [helm reset](helm_reset.md)	 - uninstalls Tiller from a cluster
    71  * [helm rollback](helm_rollback.md)	 - roll back a release to a previous revision
    72  * [helm search](helm_search.md)	 - search for a keyword in charts
    73  * [helm serve](helm_serve.md)	 - start a local http web server
    74  * [helm status](helm_status.md)	 - displays the status of the named release
    75  * [helm template](helm_template.md)	 - locally render templates
    76  * [helm test](helm_test.md)	 - test a release
    77  * [helm upgrade](helm_upgrade.md)	 - upgrade a release
    78  * [helm verify](helm_verify.md)	 - verify that a chart at the given path has been signed and is valid
    79  * [helm version](helm_version.md)	 - print the client/server version information
    80  
    81  ###### Auto generated by spf13/cobra on 16-Oct-2018