For Helm installation in Linux, you can proceed further.
📌Go to this Link--> https://github.com/helm/helm/releases
Now copy this link, as shown in the below image.
📌Now run the below command to download the software.
$ wget https://get.helm.sh/helm-v3.5.2-linux-amd64.tar.gz
Software is installed but it is in a zip format.
📌So you need to unzip this file "helm-v3.5.2-linux-amd64.tar.gz"
Now, run the command to unzip.
$ tar -xvzf helm-v3.5.2-linux-amd64.tar.gz
📌In Linux, all program files needed to be stored in "/usr/bin/" folder.
Copy this program file("linux-amd64/helm") into this folder("/usr/bin/").
📌Run the command to copy.
$ cp linux-amd64/helm /usr/bin/
📌Now you can check, whether it is installed or not.
$ helm version
if version shows, it means it is successfully installed.
Top comments (0)