Merge pull request #74731 from johnSchnake/kubeConformanceDryRun

Add support for dryRun option to kube-conformance image
This commit is contained in:
Kubernetes Prow Robot 2019-02-28 08:41:40 -08:00 committed by GitHub
commit da5fd93e93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,6 +45,10 @@ ginkgo_args=(
"--noColor=true"
)
if [[ -n ${E2E_DRYRUN:-} ]]; then
ginkgo_args+=("--dryRun=true")
fi
case ${E2E_PARALLEL} in
'y'|'Y') ginkgo_args+=("--nodes=25") ;;
[1-9]|[1-9][0-9]*) ginkgo_args+=("--nodes=${E2E_PARALLEL}") ;;