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