Source:
kubestellar/kubestellar-mcp/commands/helm-install.md
Install or upgrade a Helm chart to multiple clusters.
Install a Helm chart to clusters. Can specify target clusters explicitly or deploy to all available clusters.
helm upgrade --install on each clusterhelm_install - Install or upgrade a Helm releaseUse the helm_install tool with:
release_name: Name for the Helm release (required)chart: Chart name, path, or OCI URL (required)namespace: Target namespace (default: default)values: Key-value pairs for —setvalues_yaml: Full YAML valuesversion: Specific chart versionrepo: Chart repository URLwait: Wait for resources to be readytimeout: Timeout for waitdry_run: Preview without applyingclusters: Target clusters (all if not specified){
"release_name": "my-nginx",
"chart": "nginx",
"repo": "https://charts.bitnami.com/bitnami",
"namespace": "web",
"values": {
"replicaCount": "3",
"service.type": "LoadBalancer"
},
"wait": true
}