mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-20 09:33:52 +00:00
Merge pull request #488 from byxorna/gabe-fix-apiserver-runimage
use correct syntax for alternative value of KUBE_MINIONS
This commit is contained in:
@@ -16,6 +16,6 @@
|
|||||||
|
|
||||||
# If the user doesn't specify a minion, assume we are running in a single node
|
# If the user doesn't specify a minion, assume we are running in a single node
|
||||||
# configuration and that we have a local minion.
|
# 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}"
|
./apiserver -address=0.0.0.0 -etcd_servers="${ETCD_SERVERS}" --machines="${KUBE_MINIONS}"
|
||||||
|
Reference in New Issue
Block a user