From 11dc26a7ec3f2437adf54f15cb9b94604e25a7da Mon Sep 17 00:00:00 2001 From: Christoph Blecker Date: Wed, 21 Dec 2016 10:26:32 -0800 Subject: [PATCH 1/2] Update docs for homebrew formula --- README.md | 3 ++- docs/install.md | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c24d3ddf5..889403065 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,8 @@ Binary downloads of the Helm client can be found at the following links: - [Linux](https://kubernetes-helm.storage.googleapis.com/helm-v2.1.2-linux-amd64.tar.gz) - [Linux 32-bit](https://kubernetes-helm.storage.googleapis.com/helm-v2.1.2-linux-386.tar.gz) -Unpack the `helm` binary and add it to your PATH and you are good to go! OS X/[Cask](https://caskroom.github.io/) users can `brew cask install helm`. +Unpack the `helm` binary and add it to your PATH and you are good to go! +macOS/[homebrew](https://brew.sh/) users can also use `brew install kubernetes-helm`. To rapidly get Helm up and running, start with the [Quick Start Guide](docs/quickstart.md). diff --git a/docs/install.md b/docs/install.md index 677ffeb79..70ad23d59 100644 --- a/docs/install.md +++ b/docs/install.md @@ -22,13 +22,13 @@ can be manually downloaded and installed. From there, you should be able to run the client: `helm help`. -### From Homebrew (Mac OSX) +### From Homebrew (macOS) -Members of the Kubernetes community have contributed a Helm cask built to +Members of the Kubernetes community have contributed a Helm formula build to Homebrew. This formula is generally up to date. ``` -brew cask install helm +brew install kubernetes-helm ``` (Note: There is also a formula for emacs-helm, which is a different From d41d3b566fd2ddb225008421df739bc390160d2b Mon Sep 17 00:00:00 2001 From: Christoph Blecker Date: Wed, 21 Dec 2016 10:27:41 -0800 Subject: [PATCH 2/2] Update OS X references to macOS --- README.md | 2 +- docs/developers.md | 2 +- docs/install.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 889403065..ce99513f3 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Think of it like apt/yum/homebrew for Kubernetes. Binary downloads of the Helm client can be found at the following links: -- [OSX](https://kubernetes-helm.storage.googleapis.com/helm-v2.1.2-darwin-amd64.tar.gz) +- [macOS](https://kubernetes-helm.storage.googleapis.com/helm-v2.1.2-darwin-amd64.tar.gz) - [Linux](https://kubernetes-helm.storage.googleapis.com/helm-v2.1.2-linux-amd64.tar.gz) - [Linux 32-bit](https://kubernetes-helm.storage.googleapis.com/helm-v2.1.2-linux-386.tar.gz) diff --git a/docs/developers.md b/docs/developers.md index 58a0dbe30..59a29f060 100644 --- a/docs/developers.md +++ b/docs/developers.md @@ -27,7 +27,7 @@ To run all of the tests (without running the tests for `vendor/`), run To run Helm and Tiller locally, you can run `bin/helm` or `bin/tiller`. -- Helm and Tiller are known to run on Mac OSX and most Linuxes, including +- Helm and Tiller are known to run on macOS and most Linuxes, including Alpine. - Tiller must have access to a Kubernetes cluster. It learns about the cluster by examining the Kube config files that `kubectl` uses. diff --git a/docs/install.md b/docs/install.md index 70ad23d59..434ac72de 100644 --- a/docs/install.md +++ b/docs/install.md @@ -61,10 +61,10 @@ Canary Helm binaries are stored in the [Kubernetes Helm GCS bucket](https://kube Here are links to the common builds: - [Linux AMD64](https://kubernetes-helm.storage.googleapis.com/helm-canary-linux-amd64.tar.gz) -- [OSX AMD64](https://kubernetes-helm.storage.googleapis.com/helm-canary-darwin-amd64.tar.gz) +- [macOS AMD64](https://kubernetes-helm.storage.googleapis.com/helm-canary-darwin-amd64.tar.gz) - [Experimental Windows AMD64](https://kubernetes-helm.storage.googleapis.com/helm-canary-windows-amd64.zip) -### From Source (Linux, Mac OSX) +### From Source (Linux, macOS) Building Helm from source is slightly more work, but is the best way to go if you want to test the latest (pre-release) Helm version.