Correctly pipe USE_KUBEMARK in e2e-runner

This commit is contained in:
gmarek 2016-08-10 10:42:52 +02:00
parent bb8d2b213d
commit b30fbc138f

View File

@ -389,6 +389,10 @@ if [[ "${E2E_UPGRADE_TEST:-}" == "true" ]]; then
e2e_go_args+=(--upgrade_args="${GINKGO_UPGRADE_TEST_ARGS}")
fi
if [[ "${USE_KUBEMARK:-}" == "true" ]]; then
e2e_go_args+=("--kubemark=true")
fi
go run ./hack/e2e.go \
${E2E_OPT:-} \
"${e2e_go_args[@]}"