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

     1  ## helm delete
     2  
     3  given a release name, delete the release from Kubernetes
     4  
     5  ### Synopsis
     6  
     7  
     8  This command takes a release name, and then deletes the release from Kubernetes.
     9  It removes all of the resources associated with the last release of the chart.
    10  
    11  Use the '--dry-run' flag to see which releases will be deleted without actually
    12  deleting them.
    13  
    14  
    15  ```
    16  helm delete [flags] RELEASE_NAME [...]
    17  ```
    18  
    19  ### Options
    20  
    21  ```
    22        --description string    specify a description for the release
    23        --dry-run               simulate a delete
    24    -h, --help                  help for delete
    25        --no-hooks              prevent hooks from running during deletion
    26        --purge                 remove the release from the store and make its name free for later use
    27        --timeout int           time in seconds to wait for any individual Kubernetes operation (like Jobs for hooks) (default 300)
    28        --tls                   enable TLS for request
    29        --tls-ca-cert string    path to TLS CA certificate file (default "$HELM_HOME/ca.pem")
    30        --tls-cert string       path to TLS certificate file (default "$HELM_HOME/cert.pem")
    31        --tls-hostname string   the server name used to verify the hostname on the returned certificates from the server
    32        --tls-key string        path to TLS key file (default "$HELM_HOME/key.pem")
    33        --tls-verify            enable TLS for request and verify remote
    34  ```
    35  
    36  ### Options inherited from parent commands
    37  
    38  ```
    39        --debug                           enable verbose output
    40        --home string                     location of your Helm config. Overrides $HELM_HOME (default "~/.helm")
    41        --host string                     address of Tiller. Overrides $HELM_HOST
    42        --kube-context string             name of the kubeconfig context to use
    43        --kubeconfig string               absolute path to the kubeconfig file to use
    44        --tiller-connection-timeout int   the duration (in seconds) Helm will wait to establish a connection to tiller (default 300)
    45        --tiller-namespace string         namespace of Tiller (default "kube-system")
    46  ```
    47  
    48  ### SEE ALSO
    49  
    50  * [helm](helm.md)	 - The Helm package manager for Kubernetes.
    51  
    52  ###### Auto generated by spf13/cobra on 10-Aug-2018