Skip to content

Commit

Permalink
Add better defaults for arm64/e2e-node ci jobs
Browse files Browse the repository at this point in the history
- We should not be prepulling images in node e2e jobs
- A slightly higher timeout as well

Signed-off-by: Davanum Srinivas <davanum@gmail.com>
  • Loading branch information
dims committed Jun 20, 2023
1 parent 30e4b6c commit e76f682
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions hack/make-rules/test-e2e-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,14 @@ 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 [[ "${test_args}" != *"server-start-timeout"* ]]; then
test_args="--server-start-timeout=${SERVER_START_TIMEOUT:-3m} ${test_args}"
fi

hosts=${HOSTS:-""}
image_config_file=${IMAGE_CONFIG_FILE:-"aws-instance.yaml"}
image_config_dir=${IMAGE_CONFIG_DIR:-"config"}
Expand Down

0 comments on commit e76f682

Please sign in to comment.