From 52e0514163aaba98753b0aef642251feed5a673d Mon Sep 17 00:00:00 2001 From: Daz Wilkin Date: Tue, 12 Apr 2016 11:02:39 -0700 Subject: [PATCH] Added specificity to installation instructions Tested on Linux and assume (!) these would work for Mac OS X. --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 31cd2761d..e0a0108e0 100644 --- a/README.md +++ b/README.md @@ -26,12 +26,18 @@ Note: if you're exploring or using the project, you'll probably want to pull [the latest release](https://github.com/kubernetes/helm/releases/latest), since there may be undiscovered or unresolved issues at HEAD. +Ensure GOPATH is set. + +Ensure you are authenticated to and have access to a Kubernetes cluster. + From a Linux or Mac OS X client: ``` -$ git clone https://github.com/kubernetes/helm.git -$ cd helm +$ git clone https://github.com/kubernetes/helm.git $GOPATH/src/github.com/kubernetes/helm +$ cd $GOPATH/src/github.com/kubernetes/helm +$ go get ./... $ make build +$ cd $GOPATH $ bin/helm server install ```