From 62ee051c675b576bb17be06f5d8b6d8f699302bc Mon Sep 17 00:00:00 2001 From: gmarek Date: Fri, 9 Oct 2015 09:35:07 +0200 Subject: [PATCH] Remove publish green version from Kubemark runs --- hack/jenkins/e2e.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/hack/jenkins/e2e.sh b/hack/jenkins/e2e.sh index 7bdea051822..d675b68842f 100755 --- a/hack/jenkins/e2e.sh +++ b/hack/jenkins/e2e.sh @@ -995,11 +995,6 @@ if [[ "${USE_KUBEMARK:-}" == "true" ]]; then MASTER_SIZE=${KUBEMARK_MASTER_SIZE:-$MASTER_SIZE} ./test/kubemark/start-kubemark.sh ./test/kubemark/run-scalability-test.sh && exitcode=0 || exitcode=$? - if [[ "${E2E_PUBLISH_GREEN_VERSION:-}" == "true" && ${exitcode} == 0 && -n ${githash:-} ]]; then - echo "publish githash to ci/latest-green.txt: ${githash}" - echo "${githash}" > ${WORKSPACE}/githash.txt - gsutil cp ${WORKSPACE}/githash.txt gs://kubernetes-release/ci/latest-green.txt - fi ./test/kubemark/stop-kubemark.sh NUM_MINIONS=${NUM_MINIONS_BKP} MASTER_SIZE=${MASTER_SIZE_BKP}