From 2089324555931604d3653e1cc5533f81a5337c84 Mon Sep 17 00:00:00 2001 From: Zach Loafman Date: Wed, 25 Feb 2015 09:54:54 -0800 Subject: [PATCH] Revert "Use a different port for the kubectl proxy in the shell and go tests." --- hack/e2e-suite/update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/e2e-suite/update.sh b/hack/e2e-suite/update.sh index b0e495073e9..ac7c8e8596a 100755 --- a/hack/e2e-suite/update.sh +++ b/hack/e2e-suite/update.sh @@ -103,7 +103,7 @@ function validate() { continue fi - curl -s --max-time 5 --fail http://localhost:8010/api/v1beta1/proxy/pods/${id}/data.json \ + curl -s --max-time 5 --fail http://localhost:8011/api/v1beta1/proxy/pods/${id}/data.json \ | grep -q ${container_image_version} || { echo " ${id} is running the right image but curl to contents failed or returned wrong info" continue @@ -128,7 +128,7 @@ function teardown() { trap "teardown" EXIT # Launch a local proxy to the apiserver -${KUBECTL} proxy --port=8010 & +${KUBECTL} proxy --port=8011 & kubectl_proxy_pid=$! # Launch a container