References:
Download helm package
wget https://get.helm.sh/helm-v3.7.0-rc.2-linux-amd64.tar.gz
Unpack the downloaded package
tar -zxvf helm-v3.7.0-rc.2-linux-amd64.tar.gz
Copy the binary to a proper destination
sudo cp linux-amd64/helm /usr/local/bin/
Add execution permissions to the binary (if needed)
sudo chmod ugo+x /usr/local/bin/helm
Test the command
[roberto@vmlab01 ~]$ helm help
The Kubernetes package manager
Common actions for Helm:
- helm search: search for charts
- helm pull: download a chart to your local directory to view
- helm install: upload the chart to Kubernetes
- helm list: list releases of charts
...