From f745c9c761a23230497da8ce15daa9def1c14ded Mon Sep 17 00:00:00 2001 From: Tao Zhou Date: Tue, 7 Feb 2017 08:09:10 +0800 Subject: [PATCH] docs(using_helm): fix outdated `helm rollback` example usage in doc Closes #1921 --- docs/using_helm.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) mode change 100644 => 100755 docs/using_helm.md diff --git a/docs/using_helm.md b/docs/using_helm.md old mode 100644 new mode 100755 index 27ea04adb..2ecbee0b6 --- a/docs/using_helm.md +++ b/docs/using_helm.md @@ -324,16 +324,17 @@ cluster. And as we can see above, it shows that our new values from `panda.yaml` were deployed to the cluster. Now, if something does not go as planned during a release, it is easy to -roll back to a previous release. +roll back to a previous release using `helm rollback [RELEASE] [REVISION]`. ```console -$ helm rollback happy-panda --version 1 +$ helm rollback happy-panda 1 ``` The above rolls back our happy-panda to its very first release version. A release version is an incremental revision. Every time an install, upgrade, or rollback happens, the revision number is incremented by 1. -The first revision number is always 1. +The first revision number is always 1. And we can use `helm history [RELEASE]` +to see revision numbers for a certain release. ## Helpful Options for Install/Upgrade/Rollback There are several other helpful options you can specify for customizing the