Commit 3bf68c3c authored by Marek Grabowski's avatar Marek Grabowski Committed by GitHub

Merge pull request #30347 from gmarek/master

Correctly pipe USE_KUBEMARK in e2e-runner
parents ba1666fb b30fbc13
...@@ -389,6 +389,10 @@ if [[ "${E2E_UPGRADE_TEST:-}" == "true" ]]; then ...@@ -389,6 +389,10 @@ if [[ "${E2E_UPGRADE_TEST:-}" == "true" ]]; then
e2e_go_args+=(--upgrade_args="${GINKGO_UPGRADE_TEST_ARGS}") e2e_go_args+=(--upgrade_args="${GINKGO_UPGRADE_TEST_ARGS}")
fi fi
if [[ "${USE_KUBEMARK:-}" == "true" ]]; then
e2e_go_args+=("--kubemark=true")
fi
go run ./hack/e2e.go \ go run ./hack/e2e.go \
${E2E_OPT:-} \ ${E2E_OPT:-} \
"${e2e_go_args[@]}" "${e2e_go_args[@]}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment