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)