📝 Edit page
➕ Add page
Helm
The package manager for Kubernetes and managin charts
Links
Installation
HomeBrew on macOS
$ brew install helm
APT on Ubuntu
$ curl https://baltocdn.com/helm/signing.asc | gpg --dearmor | sudo tee /usr/share/keyrings/helm.gpg > /dev/null
$ sudo apt-get install apt-transport-https --yes
$ echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/helm.gpg] https://baltocdn.com/helm/stable/debian/ all main" | sudo tee /etc/apt/sources.list.d/helm-stable-debian.list
$ sudo apt-get update
$ sudo apt-get install helm
Snap on Ubuntu
$ sudo snap install helm --classic
Usage
Example of testing:
$ helm template --values k8s/values/prod.yaml k8s -s templates/my-template.yaml
Note the template is at path k8s/templates/my-template.yaml.