Helm Chart
@rjeschmi/helm-chartv2026.03.03.1
01README
Install, upgrade, and uninstall Helm charts on any Kubernetes cluster. Supports repo management, values, --reuse-values on upgrade, and kubectl apply.
02Models
helm_chart.tsv2026.03.03.1
fn install(releaseName: string, chart: string, namespace: string, repoName: string, repoUrl: string, version: string, valuesYaml: string, createNamespace: boolean, reuseValues: boolean, waitSeconds: number)
Install or upgrade a Helm chart (helm upgrade --install)
| Argument | Type | Description |
|---|---|---|
| releaseName | string | Helm release name |
| chart | string | Chart name (e.g. ingress-nginx/ingress-nginx) or local path |
| namespace | string | Kubernetes namespace to install into |
| repoName | string | |
| repoUrl | string | |
| version | string | |
| valuesYaml | string | |
| createNamespace | boolean | |
| reuseValues | boolean | |
| waitSeconds | number |
fn applyManifest(manifest: string)
Apply a Kubernetes manifest using kubectl apply
| Argument | Type | Description |
|---|---|---|
| manifest | string | YAML manifest to apply |
fn uninstall(releaseName: string, namespace: string)
Uninstall a Helm release
| Argument | Type | Description |
|---|---|---|
| releaseName | string | Helm release name to uninstall |
| namespace | string | Kubernetes namespace of the release |
fn status(releaseName: string, namespace: string)
Get the status of an installed Helm release
| Argument | Type | Description |
|---|---|---|
| releaseName | string | Helm release name |
| namespace | string | Kubernetes namespace of the release |
03Previous Versions
2026.02.27.2Feb 27, 2026
2026.02.27.1Feb 27, 2026
04Stats
Downloads
10
Archive size
3.3 KB
Not yet scored.
A score will be generated the next time this extension is published. The owner can also trigger scoring manually.
05Platforms