Merge pull request #488 from byxorna/gabe-fix-apiserver-runimage

use correct syntax for alternative value of KUBE_MINIONS
This commit is contained in:
Tim Hockin
2014-07-16 09:44:43 -07:00

View File

@@ -16,6 +16,6 @@
# If the user doesn't specify a minion, assume we are running in a single node
# configuration and that we have a local minion.
KUBE_MINIONS=${KUBE_MINIONS:$(hostname -f)}
KUBE_MINIONS="${KUBE_MINIONS:-$(hostname -f)}"
./apiserver -address=0.0.0.0 -etcd_servers="${ETCD_SERVERS}" --machines="${KUBE_MINIONS}"