From 5737dbbf9bf486aa7cab8c60752abff156fd6535 Mon Sep 17 00:00:00 2001 From: Ethan Arrowood Date: Thu, 29 Nov 2018 14:14:34 -0500 Subject: [PATCH] Update helm_rollback.md While deving at a Microsoft Open Hack my group discovered this useful piece of information in this issue comment: https://github.com/helm/helm/issues/1796#issuecomment-311385728 We found it very useful for our Blue Green CD pipeline and thought others might find it useful as well. Signed-off-by: Ethan Arrowood --- docs/helm/helm_rollback.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/helm/helm_rollback.md b/docs/helm/helm_rollback.md index 5862b180a..4009702e3 100644 --- a/docs/helm/helm_rollback.md +++ b/docs/helm/helm_rollback.md @@ -9,7 +9,7 @@ This command rolls back a release to a previous revision. The first argument of the rollback command is the name of a release, and the second is a revision (version) number. To see revision numbers, run -'helm history RELEASE'. +'helm history RELEASE'. If you'd like to rollback to the previous release use `helm rollback [RELEASE] 0`. ```