Commit dccf3e92 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #31639 from derekwaynecarr/fix-e2e-local

Automatic merge from submit-queue Fix running e2e against local cluster required env vars were not being set. /cc @pmorie
parents dbb19509 275c29e2
...@@ -16,5 +16,10 @@ ...@@ -16,5 +16,10 @@
# Perform preparations required to run e2e tests # Perform preparations required to run e2e tests
function prepare-e2e() { function prepare-e2e() {
echo "Local doesn't need special preparations for e2e tests" 1>&2 echo "Local doesn't need special preparations for e2e tests" 1>&2
}
# Must ensure that the following ENV vars are set
function detect-master {
export KUBE_MASTER_IP="127.0.0.1"
export KUBE_MASTER="localhost"
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment