LinuxCommandLibrary

helm

helm

TLDR

Create a helm chart

$ helm create [chart_name]
copy


Add a new helm repository
$ helm repo add [repository_name]
copy


List helm repositories
$ helm repo list
copy


Update helm repositories
$ helm repo update
copy


Delete a helm repository
$ helm repo remove [repository_name]
copy


Install a helm chart
$ helm install [name] [repository_name]/[chart_name]
copy


Download helm chart as a tar archive
$ helm get [chart_release_name]
copy


Update helm dependencies
$ helm dependency update
copy

Copied to clipboard