From aa9d0d774cbd6fe08973c530fbc47a956c1e68fa Mon Sep 17 00:00:00 2001 From: Brendan Burns Date: Tue, 19 Aug 2014 16:35:11 -0700 Subject: [PATCH] Uniquify the http firewall rule between different runs of the e2e tests. --- cluster/gce/util.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster/gce/util.sh b/cluster/gce/util.sh index b81bb1325e0..085efa3c1df 100755 --- a/cluster/gce/util.sh +++ b/cluster/gce/util.sh @@ -358,7 +358,7 @@ function test-setup { --target_tags ${MINION_TAG} \ --allowed tcp:80,tcp:8080 \ --network ${NETWORK} \ - ${MINION_TAG}-http-alt + ${MINION_TAG}-${INSTANCE_PREFIX}-http-alt fi } @@ -370,7 +370,7 @@ function test-teardown { --project ${PROJECT} \ --norespect_terminal_width \ --force \ - ${MINION_TAG}-http-alt || true > /dev/null + ${MINION_TAG}-${INSTANCE_PREFIX}-http-alt || true > /dev/null $(dirname $0)/../cluster/kube-down.sh > /dev/null }