Unverified Commit 46ad1ed0 authored by k8s-ci-robot's avatar k8s-ci-robot Committed by GitHub

Merge pull request #69757 from Huang-Wei/e2e-unbound-var

fix issue that e2e script exits due to unbound variables
parents 5a0220a6 e1af0c5f
......@@ -19,8 +19,8 @@
# Must ensure that the following ENV vars are set
function detect-master {
echo "KUBE_MASTER_IP: $KUBE_MASTER_IP" 1>&2
echo "KUBE_MASTER: $KUBE_MASTER" 1>&2
echo "KUBE_MASTER_IP: ${KUBE_MASTER_IP:-}" 1>&2
echo "KUBE_MASTER: ${KUBE_MASTER:-}" 1>&2
}
# Get node names if they are not static.
......
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