From 1e213634cfdf1055161a83ec34a4dbe1cb1a6424 Mon Sep 17 00:00:00 2001 From: Matt Butcher <technosophos@gmail.com> Date: Wed, 26 Oct 2016 15:50:09 -0600 Subject: [PATCH] docs(install): document installer script This adds documentation for 'scripts/get'. --- docs/install.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/install.md b/docs/install.md index cf53809b5..56af743eb 100644 --- a/docs/install.md +++ b/docs/install.md @@ -34,6 +34,22 @@ brew cask install helm (Note: There is also a formula for emacs-helm, which is a different project.) +## From Script + +Helm now has an installer script that will automatically grab the latest version +of the Helm client and [install it locally](https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get). + +You can fetch that script, and then execute it locally. It's well documented so +that you can read through it and understand what it is doing before you run it. + +``` +$ curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get > get_helm.sh +$ chmod 700 get_helm.sh +$ ./get_helm.sh +``` + +Yes, you can `curl ...| bash` that if you want to live on the edge. + ### From Canary Builds "Canary" builds are versions of the Helm software that are built from -- GitLab