From 0f0ce9a81b6ef2797a1faded31b9c55dbfe599da Mon Sep 17 00:00:00 2001 From: Wainer dos Santos Moschetta Date: Mon, 26 Feb 2024 11:11:05 -0300 Subject: [PATCH] tests/runk: replace the busybox image It's recommended to avoid images from docker.io to avoid errors related with hitting the pull limits that happens mostly on bare-metal machines. So this replaced the docker.io's busybox with quay.io/prometheus/busybox. Signed-off-by: Wainer dos Santos Moschetta --- tests/integration/runk/runk-tests.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/runk/runk-tests.bats b/tests/integration/runk/runk-tests.bats index 6f987235e..59abeece0 100644 --- a/tests/integration/runk/runk-tests.bats +++ b/tests/integration/runk/runk-tests.bats @@ -11,7 +11,7 @@ load "${BATS_TEST_DIRNAME}/../../metrics/lib/common.bash" setup_file() { export RUNK_BIN_PATH="/usr/local/bin/runk" - export TEST_IMAGE="docker.io/library/busybox:latest" + export TEST_IMAGE="quay.io/prometheus/busybox:latest" export CONTAINER_ID="id1" export PID_FILE="${CONTAINER_ID}.pid" export WORK_DIR="${BATS_FILE_TMPDIR}"