Skip to content

Commit

Permalink
docs(install): document installer script
Browse files Browse the repository at this point in the history
This adds documentation for 'scripts/get'.
  • Loading branch information
technosophos committed Oct 26, 2016
1 parent f175a14 commit 1e21363
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1e21363

Please sign in to comment.