From 6cfa2607454abc584ad16a45a81b54e0bf41f06e Mon Sep 17 00:00:00 2001 From: Brian Grant Date: Tue, 2 Jun 2015 16:46:30 -0700 Subject: [PATCH] Revert "Make a namespace before using it" --- hack/e2e-suite/services.sh | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/hack/e2e-suite/services.sh b/hack/e2e-suite/services.sh index b517c49f863..2ccb2a4bf3c 100755 --- a/hack/e2e-suite/services.sh +++ b/hack/e2e-suite/services.sh @@ -64,19 +64,6 @@ function do_teardown() { ${KUBECTL} delete namespace "${NAMESPACE}" } -function make_namespace() { - echo "Making namespace '${NAMESPACE}'" - ${KUBECTL} create -f - << __EOF__ -{ - "kind": "Namespace", - "apiVersion": "v1beta3", - "metadata": { - "name": "${NAMESPACE}" - } -} -__EOF__ -} - # Args: # $1: service name # $2: service port @@ -305,9 +292,6 @@ detect-minions test_node="${MINION_NAMES[0]}" master="${MASTER_NAME}" -# Make our namespace -make_namespace - # Launch some pods and services. svc1_name="service1" svc1_port=80