We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9820cbc + 03d0e86 commit da5fd93Copy full SHA for da5fd93
cluster/images/conformance/run_e2e.sh
@@ -45,6 +45,10 @@ ginkgo_args=(
45
"--noColor=true"
46
)
47
48
+if [[ -n ${E2E_DRYRUN:-} ]]; then
49
+ ginkgo_args+=("--dryRun=true")
50
+fi
51
+
52
case ${E2E_PARALLEL} in
53
'y'|'Y') ginkgo_args+=("--nodes=25") ;;
54
[1-9]|[1-9][0-9]*) ginkgo_args+=("--nodes=${E2E_PARALLEL}") ;;
0 commit comments