github.com/koderover/helm@v2.17.0+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 of the kubeconfig file to be used 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 16-May-2019