LinuxCommandLibrary

helm

package manager for Kubernetes

TLDR

Install chart

$ helm install [release-name] [chart]
copy
Search for charts
$ helm search repo [keyword]
copy
Add repository
$ helm repo add [name] [url]
copy
List releases
$ helm list
copy
Upgrade release
$ helm upgrade [release-name] [chart]
copy
Uninstall release
$ helm uninstall [release-name]
copy
Show chart values
$ helm show values [chart]
copy

SYNOPSIS

helm command [options]

DESCRIPTION

Helm is the package manager for Kubernetes. It manages charts, which are packages of pre-configured Kubernetes resources.
Helm simplifies application deployment, versioning, and upgrades. It uses templating to customize deployments for different environments.

PARAMETERS

COMMAND

Subcommand to execute.
install
Install a chart.
upgrade
Upgrade a release.
uninstall
Uninstall a release.
list
List releases.
repo
Repository operations.
search
Search for charts.
--namespace NS
Kubernetes namespace.
--help
Display help information.

CAVEATS

Requires kubectl configured. Chart versions matter. Tiller removed in Helm 3.

HISTORY

Helm was created by Deis and is now a CNCF graduated project, becoming the standard for Kubernetes package management.

SEE ALSO

> TERMINAL_GEAR

Curated for the Linux community

Copied to clipboard

> TERMINAL_GEAR

Curated for the Linux community