Source:
kubestellar/kubestellar-mcp/commands/helm-rollback.md
Helm Rollback
Rollback a Helm release to a previous revision.
Usage
Roll back a Helm release to a previous revision across clusters.
Examples
- “Rollback my-app to the previous version”
- “Helm rollback nginx to revision 3”
- “Undo the last deployment of redis”
What it does
- Finds clusters where the release exists
- Runs
helm rollbackon each cluster - Reports success/failure per cluster
MCP Tools Used
helm_rollback- Rollback a Helm release
Implementation
Use the helm_rollback tool with:
release_name: Name of the release (required)namespace: Namespace of the release (default: default)revision: Revision number to rollback to (previous if not specified)dry_run: Preview without applyingclusters: Target clusters (auto-detected if not specified)
Examples of Tool Calls
{
"release_name": "my-nginx",
"namespace": "web",
"revision": 2
}