Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 437 Bytes

15_install_helm_3.md

File metadata and controls

15 lines (12 loc) · 437 Bytes

Helm

To install some basic artifacts into our cluster we use helm:

Install Helm v3 to your machine

curl -L https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
### ensure in cloud shell to be constant
mkdir ~/bin && cp `which helm` ~/bin/

### verify helm3
helm version
### add bash completion
echo 'source <(helm completion bash)' >> ~/.bashrc && bash