You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwhisk.apache.org by mr...@apache.org on 2018/05/10 21:18:11 UTC

[incubator-openwhisk-deploy-kube] branch master updated: download/install helm from /tmp (#195)

This is an automated email from the ASF dual-hosted git repository.

mrutkowski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-openwhisk-deploy-kube.git


The following commit(s) were added to refs/heads/master by this push:
     new d61f5dd  download/install helm from /tmp (#195)
d61f5dd is described below

commit d61f5ddf724b3d8828c76f7c5a2f5711c2ea0b65
Author: David Grove <dg...@users.noreply.github.com>
AuthorDate: Thu May 10 17:18:08 2018 -0400

    download/install helm from /tmp (#195)
---
 tools/travis/setup.sh | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/tools/travis/setup.sh b/tools/travis/setup.sh
index cd40d29..75c232d 100755
--- a/tools/travis/setup.sh
+++ b/tools/travis/setup.sh
@@ -77,9 +77,11 @@ echo "minikube is deployed and reachable"
 minikube update-context
 
 # Download and install helm
-curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get > get_helm.sh
-chmod +x get_helm.sh
-./get_helm.sh
+pushd /tmp
+  curl https://raw.githubusercontent.com/kubernetes/helm/master/scripts/get > get_helm.sh
+  chmod +x get_helm.sh
+  ./get_helm.sh
+popd
 
 # Install tiller
 /usr/local/bin/helm init --service-account default

-- 
To stop receiving notification emails like this one, please contact
mrutkowski@apache.org.