Fixed passing RUNTIME_CONFIG flag, since currently it fails passing eg.

RUNTIME_CONFIG="experimental/v1=true" to the server.
This commit is contained in:
Maciej Szulik
2015-09-09 17:23:39 +02:00
parent f5ee560b28
commit 08aae94dea
2 changed files with 2 additions and 2 deletions

View File

@@ -212,7 +212,7 @@ function start_apiserver {
fi
runtime_config=""
if [[ -n "${RUNTIME_CONFIG}" ]]; then
runtime_config="--runtime-config=\"${RUNTIME_CONFIG}\""
runtime_config="--runtime-config=${RUNTIME_CONFIG}"
fi
APISERVER_LOG=/tmp/kube-apiserver.log