Helm is a tool for managing Kubernetes charts. Charts are packages of pre-configured Kubernetes resources.
Here is the steps to install helm in Ubuntu 16.04 machine.
Download helm :
$ wget https://storage.googleapis.com/kubernetes-helm/helm-v2.11.0-linux-amd64.tar.gz
Untar the package :
$ tar -xvf helm-v2.11.0-linux-amd64.tar.gz
Find “helm” from the directory and move it to given path.
$ mv linux-amd64/helm /usr/local/bin/helm
Verify helm version :
$ helm version
Client: &version.Version{SemVer:”v2.11.0″, GitCommit:”2e55dbe1fdb5fdb96b75ff144a339489417b146b”, GitTreeState:”clean”}
Linuxguru