Helm Tutorials: How to install Helm?

Install Helm Tarfile Manually

$ wget https://get.helm.sh/helm-v3.12.1-linux-amd64.tar.gz
$ tar -zxvf helm-v3.12.1-linux-amd64.tar.gz

From Script

$ curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3
$ chmod 700 get_helm.sh
$ ./get_helm.sh

From Script

$ curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash

From Homebrew (macOS)

$ brew install helm

From Chocolatey (Windows)

$ choco install kubernetes-helm

From Apt (Debian/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

From dnf/yum (fedora)

$ sudo dnf install helm
Rajesh Kumar
Follow me
Latest posts by Rajesh Kumar (see all)
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x