Skip to main content

Helm Chart

@rjeschmi/helm-chartv2026.03.03.1· 2mo ago
01README

Install, upgrade, and uninstall Helm charts on any Kubernetes cluster. Supports repo management, values, --reuse-values on upgrade, and kubectl apply.

02Models1
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)
ArgumentTypeDescription
releaseNamestringHelm release name
chartstringChart name (e.g. ingress-nginx/ingress-nginx) or local path
namespacestringKubernetes namespace to install into
repoNamestring
repoUrlstring
versionstring
valuesYamlstring
createNamespaceboolean
reuseValuesboolean
waitSecondsnumber
fn applyManifest(manifest: string)
Apply a Kubernetes manifest using kubectl apply
ArgumentTypeDescription
manifeststringYAML manifest to apply
fn uninstall(releaseName: string, namespace: string)
Uninstall a Helm release
ArgumentTypeDescription
releaseNamestringHelm release name to uninstall
namespacestringKubernetes namespace of the release
fn status(releaseName: string, namespace: string)
Get the status of an installed Helm release
ArgumentTypeDescription
releaseNamestringHelm release name
namespacestringKubernetes namespace of the release
03Previous Versions2
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