From b006bdf48edb7d70ddd99a092954c93b0fbf4dcc Mon Sep 17 00:00:00 2001 From: Steve Wilkerson Date: Wed, 8 Feb 2017 08:40:36 -0600 Subject: [PATCH] Fix path for Tiller instance in .travis.yml Overlooked an issue with the path for running Tiller locally. Should be $GOPATH instead of $HOME/gopath --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 62c1e39121..9484e3a88c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,7 +21,7 @@ install: script: - cd $TRAVIS_BUILD_DIR - bash travis-ci/kubeadm_setup.sh - - $HOME/gopath/src/k8s.io/helm/bin/tiller & + - $GOPATH/src/k8s.io/helm/bin/tiller & - export HELM_HOST=localhost:44134 - helm init --client-only - helm version