From b726eb0d03174ee2829a7a91946243e3dd4c2d2b Mon Sep 17 00:00:00 2001 From: Arunvel Sriram Date: Fri, 20 Oct 2017 21:21:26 +0530 Subject: [PATCH] Install kubectl on OS X using Homebrew --- docs/02-client-tools.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/02-client-tools.md b/docs/02-client-tools.md index 738b879..f3169da 100644 --- a/docs/02-client-tools.md +++ b/docs/02-client-tools.md @@ -68,6 +68,16 @@ The `kubectl` command line utility is used to interact with the Kubernetes API S ### OS X +#### Using Homebrew + +``` +brew install kubectl +``` + +**[ OR ]** + +#### From official release binaries: + ``` curl -o kubectl https://storage.googleapis.com/kubernetes-release/release/v1.8.0/bin/darwin/amd64/kubectl ```