.prow.sh: show KUBECONFIG when running e2e.test

This is useful for developers who might want to grab the command and
run it again.
This commit is contained in:
Patrick Ohly 2019-06-14 13:04:58 +02:00
parent 66c6c3ce40
commit 339931bb36
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ run_e2e () (
trap "move_junit '$name'" EXIT
cd "${GOPATH}/src/${CSI_PROW_E2E_IMPORT_PATH}" &&
run_with_loggers ginkgo -v "$@" "${CSI_PROW_WORK}/e2e.test" -- -report-dir "${ARTIFACTS}"
run_with_loggers env KUBECONFIG="$KUBECONFIG" ginkgo -v "$@" "${CSI_PROW_WORK}/e2e.test" -- -report-dir "${ARTIFACTS}"
)
main