Source:
kubestellar/kubestellar-mcp/commands/helm-uninstall.md
Helm Uninstall
Uninstall a Helm release from clusters.
Usage
Remove a Helm release from one or more clusters. Automatically finds clusters where the release exists.
Examples
- “Uninstall my-app from all clusters”
- “Helm uninstall nginx from production cluster”
- “Remove the redis release from staging namespace”
What it does
- Finds clusters where the release exists (or uses specified clusters)
- Runs
helm uninstallon each cluster - Reports success/failure per cluster
MCP Tools Used
helm_uninstall- Uninstall a Helm release
Implementation
Use the helm_uninstall tool with:
release_name: Name of the release to uninstall (required)namespace: Namespace of the release (default: default)dry_run: Preview without applyingclusters: Target clusters (auto-detected if not specified)
Examples of Tool Calls
{
"release_name": "my-nginx",
"namespace": "web",
"dry_run": true
}