Skip to content

Instantly share code, notes, and snippets.

@mohanpedala
Last active May 24, 2025 01:48
Show Gist options
  • Select an option

  • Save mohanpedala/c9dff3c3772f726b0b93edb827df0bdb to your computer and use it in GitHub Desktop.

Select an option

Save mohanpedala/c9dff3c3772f726b0b93edb827df0bdb to your computer and use it in GitHub Desktop.

Revisions

  1. Mohan P Edala revised this gist Jun 24, 2020. 1 changed file with 18 additions and 4 deletions.
    22 changes: 18 additions & 4 deletions helm-install.md
    Original 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
    ```
  2. Mohan P Edala created this gist Jun 24, 2020.
    19 changes: 19 additions & 0 deletions helm-install.md
    Original 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
    ```