Table of Contents |
---|
...
Install helm client https://github.com/kubernetes/helm/releases
There are two parts to Helm: The Helm client (helm
) and the Helm server (Tiller)
Installation procedure at: https://github.com/kubernetes/helm/blob/master/docs/install.md
...
For the helm client and server versions shown below following are the download links:
Helm Client: https://storage.googleapis.com/kubernetes-helm/helm-v2.3.0-linux-amd64.tar.gz3-linux-amd64.tar.gz
Code Block |
---|
wget https://storage.googleapis.com/kubernetes-helm/helm-v2.3.0-linux-amd64.tar.gz tar -zxvf helm-v2.3.0-linux-amd64.tar.gz sudo mv linux-amd64/helm /usr/local/bin/helm |
...