github.com/koderover/helm@v2.17.0+incompatible/docs/helm/helm_rollback.md (about) 1 ## helm rollback 2 3 Rollback 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'. If you'd like to rollback to the previous release use 13 'helm rollback [RELEASE] 0'. 14 15 16 ``` 17 helm rollback [flags] [RELEASE] [REVISION] 18 ``` 19 20 ### Options 21 22 ``` 23 --cleanup-on-fail Allow deletion of new resources created in this rollback when rollback failed 24 --description string Specify a description for the release 25 --dry-run Simulate a rollback 26 --force Force resource update through delete/recreate if needed 27 -h, --help help for rollback 28 --no-hooks Prevent hooks from running during rollback 29 --recreate-pods Performs pods restart for the resource if applicable 30 --timeout int Time in seconds to wait for any individual Kubernetes operation (like Jobs for hooks) (default 300) 31 --tls Enable TLS for request 32 --tls-ca-cert string Path to TLS CA certificate file (default "$HELM_HOME/ca.pem") 33 --tls-cert string Path to TLS certificate file (default "$HELM_HOME/cert.pem") 34 --tls-hostname string The server name used to verify the hostname on the returned certificates from the server 35 --tls-key string Path to TLS key file (default "$HELM_HOME/key.pem") 36 --tls-verify Enable TLS for request and verify remote 37 --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 38 ``` 39 40 ### Options inherited from parent commands 41 42 ``` 43 --debug Enable verbose output 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 of the kubeconfig file to be used 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](helm.md) - The Helm package manager for Kubernetes. 55 56 ###### Auto generated by spf13/cobra on 16-May-2019