Merge pull request #30347 from gmarek/master

Correctly pipe USE_KUBEMARK in e2e-runner
This commit is contained in:
Marek Grabowski 2016-08-10 11:20:44 +02:00 committed by GitHub
commit 3bf68c3ce6

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[@]}"