Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Charts are easy to create, version, share, and publish — so start using Helm and stop the copy-and-paste madness.


Installing Helm Client

> brew install kubernetes-helm

...

Once you have Helm ready, you can initialize the local CLI and also install Tiller into your Kubernetes cluster in one step:


> helm init --service-account=tiller

Code Block
$ helm init

Creating /Users/john.mehan/.helm 
Creating /Users/john.mehan/.helm/repository 
Creating /Users/john.mehan/.helm/repository/cache 
Creating /Users/john.mehan/.helm/repository/local 
Creating /Users/john.mehan/.helm/plugins 
Creating /Users/john.mehan/.helm/starters 
Creating /Users/john.mehan/.helm/cache/archive 
Creating /Users/john.mehan/.helm/repository/repositories.yaml 
Adding stable repo with URL: https://kubernetes-charts.storage.googleapis.com 
Adding local repo with URL: http://127.0.0.1:8879/charts 
$HELM_HOME has been configured at /Users/john.mehan/.helm.


Tiller (the Helm server-side component) has been installed into your Kubernetes Cluster.


Please note: by default, Tiller is deployed with an insecure 'allow unauthenticated users' policy.
To prevent this, run `helm init` with the --tiller-tls-verify flag.
For more information on securing your installation see: https://docs.helm.sh/using_helm/#securing-your-helm-installation
Happy Helming!

...