Last active
May 24, 2025 01:48
-
-
Save mohanpedala/c9dff3c3772f726b0b93edb827df0bdb to your computer and use it in GitHub Desktop.
Revisions
-
Mohan P Edala revised this gist
Jun 24, 2020 . 1 changed file with 18 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,19 +1,33 @@ ## Helm 3 installation * Download the package and untar it. ``` wget https://get.helm.sh/helm-v3.0.2-linux-amd64.tar.gz tar xvf helm-v3.0.2-linux-amd64.tar.gz ``` * Move the package to the below location ``` mv linux-amd64/helm /usr/local/bin/helm3 ``` * Verify the version ``` bash-5.0# helm3 version --short v3.0.2+g19e47ee ``` ## Helm 2 installation * Download the package and untar it. ``` wget https://get.helm.sh/helm-v2.16.9-linux-amd64.tar.gz tar -xzvf helm-v2.16.9-linux-amd64.tar.gz ``` * Move the package to the below location ``` mv linux-amd64/helm /usr/local/bin/helm ``` * Verify the version ``` bash-5.0# helm version --short Client: v2.16.9+g8ad7037 ``` -
Mohan P Edala created this gist
Jun 24, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ ``` wget https://get.helm.sh/helm-v3.0.2-linux-amd64.tar.gz tar xvf helm-v3.0.2-linux-amd64.tar.gz mv linux-amd64/helm /usr/local/bin/helm3 bash-5.0# helm3 version --short v3.0.2+g19e47ee wget https://get.helm.sh/helm-v2.16.9-linux-amd64.tar.gz tar -xzvf helm-v2.16.9-linux-amd64.tar.gz mv linux-amd64/helm /usr/local/bin/helm bash-5.0# helm version --short Client: v2.16.9+g8ad7037 ```