Unverified Commit da5fd93e authored by Kubernetes Prow Robot's avatar Kubernetes Prow Robot Committed by GitHub

Merge pull request #74731 from johnSchnake/kubeConformanceDryRun

Add support for dryRun option to kube-conformance image
parents 9820cbce 03d0e861
...@@ -45,6 +45,10 @@ ginkgo_args=( ...@@ -45,6 +45,10 @@ ginkgo_args=(
"--noColor=true" "--noColor=true"
) )
if [[ -n ${E2E_DRYRUN:-} ]]; then
ginkgo_args+=("--dryRun=true")
fi
case ${E2E_PARALLEL} in case ${E2E_PARALLEL} in
'y'|'Y') ginkgo_args+=("--nodes=25") ;; 'y'|'Y') ginkgo_args+=("--nodes=25") ;;
[1-9]|[1-9][0-9]*) ginkgo_args+=("--nodes=${E2E_PARALLEL}") ;; [1-9]|[1-9][0-9]*) ginkgo_args+=("--nodes=${E2E_PARALLEL}") ;;
......
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