Rolling back Helm releases manually

Hitachi iQ Studio Installation Guide

Version
1.0.x
Audience
anonymous
Part Number
MK-26HIQS000-01
ft:lastEdition
2026-06-10

Manually roll back components that the operator couldn’t restore automatically.

  1. Identify the last successful revision.
    helm history <release-name> -n <namespace>
    Look for the most recent revision with a deployed status.
  2. Roll back to that revision.
    helm rollback <release-name> <last-successful-revision> \
      --namespace <namespace> \
      --wait \
      --timeout 300s \
      --cleanup-on-fail
  3. Confirm that the release is in a deployed state after the rollback.
    helm status <release-name> -n <namespace>
  4. Repeat steps 1 through 3 for each affected component.