fix issue that e2e script exits due to unbound variables

pull/58/head
Wei Huang 2018-10-12 17:54:20 -07:00
parent e1a1aa2112
commit e1af0c5fb1
No known key found for this signature in database
GPG Key ID: BE5E9752F8B6E005
1 changed files with 2 additions and 2 deletions

View File

@ -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.