From c1c11557a4fdce24bc38cac9ed1d1f44398b5871 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Sat, 1 Nov 2014 12:20:16 -0400 Subject: [PATCH] hack/local-up-cluster fails to even launch apiserver --machines was removed but still referenced in hack/local-up-cluster. This is not a total fix, but at least allows the apiserver to start. --- hack/local-up-cluster.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/local-up-cluster.sh b/hack/local-up-cluster.sh index 53d114fc68b..e556cdaf963 100755 --- a/hack/local-up-cluster.sh +++ b/hack/local-up-cluster.sh @@ -52,9 +52,9 @@ APISERVER_LOG=/tmp/apiserver.log --address="${API_HOST}" \ --port="${API_PORT}" \ --etcd_servers="http://127.0.0.1:4001" \ - --machines="127.0.0.1" \ --portal_net="10.0.0.0/24" \ --cors_allowed_origins="${API_CORS_ALLOWED_ORIGINS}" >"${APISERVER_LOG}" 2>&1 & + #--machines="127.0.0.1" \ removed APISERVER_PID=$! # Wait for apiserver to come up before launching the rest of the components.