Remove 'auth-path' in the arguments for kubelet.

Otherwise kubelet will fail to create the client because it can't
find the nonexisting auth file.
This commit is contained in:
Yifan Gu 2015-05-13 16:26:22 -07:00
parent 8605f43df5
commit 621dc01f42

View File

@ -178,7 +178,6 @@ if [[ -z "${DOCKERIZE_KUBELET}" ]]; then
--hostname_override="127.0.0.1" \
--address="127.0.0.1" \
--api_servers="${API_HOST}:${API_PORT}" \
--auth_path="${KUBE_ROOT}/hack/.test-cmd-auth" \
--port="$KUBELET_PORT" >"${KUBELET_LOG}" 2>&1 &
KUBELET_PID=$!
else