github.com/Beeketing/helm@v2.12.1+incompatible/docs/helm/helm_rollback.md (about) 1 ## helm rollback 2 3 roll back a release to a previous revision 4 5 ### Synopsis 6 7 8 This command rolls back a release to a previous revision. 9 10 The first argument of the rollback command is the name of a release, and the 11 second is a revision (version) number. To see revision numbers, run 12 'helm history RELEASE'. 13 14 15 ``` 16 helm rollback [flags] [RELEASE] [REVISION] 17 ``` 18 19 ### Options 20 21 ``` 22 --description string specify a description for the release 23 --dry-run simulate a rollback 24 --force force resource update through delete/recreate if needed 25 -h, --help help for rollback 26 --no-hooks prevent hooks from running during rollback 27 --recreate-pods performs pods restart for the resource if applicable 28 --timeout int time in seconds to wait for any individual Kubernetes operation (like Jobs for hooks) (default 300) 29 --tls enable TLS for request 30 --tls-ca-cert string path to TLS CA certificate file (default "$HELM_HOME/ca.pem") 31 --tls-cert string path to TLS certificate file (default "$HELM_HOME/cert.pem") 32 --tls-hostname string the server name used to verify the hostname on the returned certificates from the server 33 --tls-key string path to TLS key file (default "$HELM_HOME/key.pem") 34 --tls-verify enable TLS for request and verify remote 35 --wait if set, will wait until all Pods, PVCs, Services, and minimum number of Pods of a Deployment are in a ready state before marking the release as successful. It will wait for as long as --timeout 36 ``` 37 38 ### Options inherited from parent commands 39 40 ``` 41 --debug enable verbose output 42 --home string location of your Helm config. Overrides $HELM_HOME (default "~/.helm") 43 --host string address of Tiller. Overrides $HELM_HOST 44 --kube-context string name of the kubeconfig context to use 45 --kubeconfig string absolute path to the kubeconfig file to use 46 --tiller-connection-timeout int the duration (in seconds) Helm will wait to establish a connection to tiller (default 300) 47 --tiller-namespace string namespace of Tiller (default "kube-system") 48 ``` 49 50 ### SEE ALSO 51 52 * [helm](helm.md) - The Helm package manager for Kubernetes. 53 54 ###### Auto generated by spf13/cobra on 10-Aug-2018