From 564c236ce2889c5f70dc7d38a9da4320cae0a7cc Mon Sep 17 00:00:00 2001 From: Davanum Srinivas Date: Mon, 19 Jun 2023 19:35:17 -0400 Subject: [PATCH] Do NOT prepull images for e2e-node jobs Signed-off-by: Davanum Srinivas --- hack/make-rules/test-e2e-node.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hack/make-rules/test-e2e-node.sh b/hack/make-rules/test-e2e-node.sh index ec82cad30ab..b8678a0ea92 100755 --- a/hack/make-rules/test-e2e-node.sh +++ b/hack/make-rules/test-e2e-node.sh @@ -84,6 +84,9 @@ if [[ -n ${image_service_endpoint} ]] ; then test_args="--image-service-endpoint=${image_service_endpoint} ${test_args}" fi +if [[ "${test_args}" != *"prepull-images"* ]]; then + test_args="--prepull-images=${PREPULL_IMAGES:-false} ${test_args}" +fi if [ "${remote}" = true ] && [ "${remote_mode}" = gce ] ; then # The following options are only valid in remote GCE run.