mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-30 15:05:27 +00:00
Merge pull request #74731 from johnSchnake/kubeConformanceDryRun
Add support for dryRun option to kube-conformance image
This commit is contained in:
commit
da5fd93e93
@ -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}") ;;
|
||||
|
Loading…
Reference in New Issue
Block a user