diff --git a/test/helm-test-e2e.sh b/test/helm-test-e2e.sh index 9b97557e62..c30c0f3137 100755 --- a/test/helm-test-e2e.sh +++ b/test/helm-test-e2e.sh @@ -16,8 +16,8 @@ tar xzfv ${HELM_TARBALL} rm -f ${HELM_TARBALL} # Housekeeping -kubectl -n kube-system create sa tiller -kubectl create clusterrolebinding tiller --clusterrole cluster-admin --serviceaccount=kube-system:tiller +kubernetes/client/bin/kubectl -n kube-system create sa tiller +kubernetes/client/bin/kubectl create clusterrolebinding tiller --clusterrole cluster-admin --serviceaccount=kube-system:tiller linux-amd64/helm init --service-account tiller --upgrade linux-amd64/helm repo add stable https://kubernetes-charts.storage.googleapis.com/ diff --git a/test/helm-test/main.go b/test/helm-test/main.go index ea266d1fe2..5428c91e42 100644 --- a/test/helm-test/main.go +++ b/test/helm-test/main.go @@ -112,7 +112,7 @@ var ( chartsBasePath = filepath.Join(os.Getenv("GOPATH"), "src/k8s.io/charts") whiteListYamlPath = filepath.Join(chartsBasePath, "test/helm-test/whitelist.yaml") helmPath = "linux-amd64/helm" - kubectlPath = "/workspace/kubernetes/client/bin/kubectl" + kubectlPath = "kubernetes/client/bin/kubectl" ) func init() {