Back to the registry

Helm

Tools for managing and interacting with Helm charts and repositories

GetRelease
v1.0.0

This command consists of multiple subcommands which can be used to get extended information about the release, including: Available specifiers: all download all information for a named release hooks download all hooks for a named release manifest download the manifest for a named release. The manifest is a YAML-formatted file containing the complete state of the release. notes download the notes for a named release. The notes are a text document that contains information about the release. values download the values file for a named release. The values are a YAML-formatted file containing the values used to generate the release.

Built-in
MCP
ListReleases
v1.0.0

This command lists all of the releases for a specified namespace (uses current namespace context if namespace not specified). If the --filter flag is provided, it will be treated as a filter. Filters are regular expressions (Perl compatible) that are applied to the list of releases. Only items that match the filter will be returned. $ helm list --filter 'ara[a-z]+' NAME UPDATED CHART maudlin-arachnid 2020-06-18 14:17:46.125134977 +0000 UTC alpine-0.1.0

Built-in
MCP
RepoAdd
v1.0.0

This command adds a repository to the local helm repositories.

Built-in
MCP
RepoUpdate
v1.0.0

This command updates the local helm repositories.

Built-in
MCP
Uninstall
v1.0.0

This command takes a release name and uninstalls the release. It removes all of the resources associated with the last release of the chart as well as the release history, freeing it up for future use. Use the '--dry-run' flag to see which releases will be uninstalled without actually uninstalling them. Usage: helm uninstall RELEASE_NAME [...] [flags]

Built-in
MCP
Upgrade
v1.0.0

This command upgrades or installs a release to a new version of a chart. The upgrade arguments must be a release and chart. The chart argument can be either: a chart reference('example/mariadb'), a path to a chart directory, a packaged chart, or a fully qualified URL. For chart references, the latest version will be specified unless the '--version' flag is set. There are six different ways you can express the chart you want to install: 1. By chart reference: helm install mymaria example/mariadb 2. By path to a packaged chart: helm install mynginx ./nginx-1.2.3.tgz 3. By path to an unpacked chart directory: helm install mynginx ./nginx 4. By absolute URL: helm install mynginx https://example.com/charts/nginx-1.2.3.tgz 5. By chart reference and repo url: helm install --repo https://example.com/charts/ mynginx nginx 6. By OCI registries: helm install mynginx --version 1.2.3 oci://example.com/charts/nginx

Built-in
MCP