...
sudo mv ./kubectl /usr/local/bin/kubectl
7. Verifying Kubectl installation Verify that Kubernetes kubernetes config is goodgood
root@localhost:~# kubectl cluster-info
Kubernetes master is running at https://10.110.208.207:443/
dnsmasq is running at https://10.110.208.207:443//api/v1/namespaces/kube-system/services/dnsmasq/proxy
kubedns is running at https://10.110.208.207:443//api/v1/namespaces/kube-system/services/kubedns/proxy
...
8.1 download the helm using below command
wget http://storage.googleapis.com/kubernetes-helm/helm-v2.3.0-linux-amd64.tar.gz
8.2 untar the file
tar -zxvf helm-v2.3.0-linux-amd64.tar.gz
8.3 Move the helm to /usr/loca/bin
sudo mv linux-amd64/helm /usr/local/bin/helm
...