From b9f65604d629b4d4eef9f201ab29ae702defe322 Mon Sep 17 00:00:00 2001 From: Vic Iglesias Date: Thu, 4 May 2017 11:12:46 -0700 Subject: [PATCH] Use helm 2.4.1 and set install timeout to 10m (#1003) --- test/changed.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/changed.sh b/test/changed.sh index 0c6a282f09..9f3d120051 100755 --- a/test/changed.sh +++ b/test/changed.sh @@ -46,7 +46,7 @@ fi # Install and initialize helm/tiller HELM_URL=https://storage.googleapis.com/kubernetes-helm -HELM_TARBALL=helm-v2.1.3-linux-amd64.tar.gz +HELM_TARBALL=helm-v2.4.1-linux-amd64.tar.gz INCUBATOR_REPO_URL=https://kubernetes-charts-incubator.storage.googleapis.com/ pushd /opt wget -q ${HELM_URL}/${HELM_TARBALL} @@ -66,7 +66,7 @@ for directory in ${CHANGED_FOLDERS}; do CURRENT_RELEASE=${RELEASE_NAME} helm lint ${directory} helm dep update ${directory} - helm install --name ${RELEASE_NAME} --namespace ${NAMESPACE} ${directory} | tee install_output + helm install --timeout 600 --name ${RELEASE_NAME} --namespace ${NAMESPACE} ${directory} | tee install_output ./test/verify-release.sh ${NAMESPACE} kubectl get pods --namespace ${NAMESPACE} kubectl get svc --namespace ${NAMESPACE}