I am looking for a way to rollback a helm release to its previous release without specifying the target release version as a number.
Something like helm rollback &
helm rollback &
As it turns out, there is an undocumented option to rollback to the last successful release by defining the target release version as 0. like: helm rollback 0
helm rollback 0
Source: https://github.com/helm/helm/issues/1796