Skip to content

Helm

Basic actions

List versions of a chart:

helm search repo $CHART_NAME

List all releases installed:

helm list --all-namespaces

Get all the information available on a release:

helm get all $RELEASE_NAME

Get the status of a release:

helm status $RELEASE_NAME

Install or upgrade a release:

helm upgrade --install --namespace=$NAMESPACE_NAME --values=values.yaml $RELEASE_NAME $CHART_NAME

Delete a release:

helm uninstall --namespace=$NAMESPACE_NAME $RELEASE_NAME

Template a chart:

helm template $RELEASE_NAME $CHART_NAME

Lint a chart:

helm lint $CHART_NAME

Update chart dependencies:

helm dependency update