From 1ab53ec6a1e2c7d624736c96bfc3e1ea1763f0fa Mon Sep 17 00:00:00 2001 From: Jan Chaloupka Date: Thu, 16 Feb 2017 00:06:48 +0100 Subject: [PATCH] remove api and port env from integration tests --- integration-tests.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/integration-tests.sh b/integration-tests.sh index bc64a42b98..4c35574310 100755 --- a/integration-tests.sh +++ b/integration-tests.sh @@ -5,11 +5,9 @@ # - KUBE_MASTER_API: master api url # - KUBE_MASTER_API_PORT: master api port -KUBE_MASTER_API=${KUBE_MASTER_API:-http://localhost} -KUBE_MASTER_API_PORT=${KUBE_MASTER_API_PORT:-443} KUBE_CONFIG=${KUBE_CONFIG:-~/.kube/config} -alias kubectl="kubectl --kubeconfig=${KUBE_CONFIG} --server=${KUBE_MASTER_API}:${KUBE_MASTER_API_PORT}" +alias kubectl="kubectl --kubeconfig=${KUBE_CONFIG}" alias cc="./cluster-capacity --kubeconfig ${KUBE_CONFIG}" #### pre-tests checks