From 1820b02993e292cfba6155ab6dedf3cbe3156d03 Mon Sep 17 00:00:00 2001 From: ChengyuZhu6 Date: Thu, 23 May 2024 11:31:34 +0800 Subject: [PATCH] tests: replace busybox from docker with quay in guest pull To prevent download failures caused by high traffic to the Docker image, opt for quay.io/prometheus/busybox:latest over docker.io/library/busybox:latest . Signed-off-by: ChengyuZhu6 --- .../kubernetes/runtimeclass_workloads/pod-file-volume.yaml | 2 +- .../kubernetes/runtimeclass_workloads/pod-readonly-volume.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/integration/kubernetes/runtimeclass_workloads/pod-file-volume.yaml b/tests/integration/kubernetes/runtimeclass_workloads/pod-file-volume.yaml index e7a194f42a..3c3b281b28 100644 --- a/tests/integration/kubernetes/runtimeclass_workloads/pod-file-volume.yaml +++ b/tests/integration/kubernetes/runtimeclass_workloads/pod-file-volume.yaml @@ -19,7 +19,7 @@ spec: type: File containers: - name: busybox-file-volume-container - image: busybox + image: quay.io/prometheus/busybox:latest volumeMounts: - name: shared-file mountPath: MOUNT_PATH diff --git a/tests/integration/kubernetes/runtimeclass_workloads/pod-readonly-volume.yaml b/tests/integration/kubernetes/runtimeclass_workloads/pod-readonly-volume.yaml index 8835bae999..a6e129aae9 100644 --- a/tests/integration/kubernetes/runtimeclass_workloads/pod-readonly-volume.yaml +++ b/tests/integration/kubernetes/runtimeclass_workloads/pod-readonly-volume.yaml @@ -18,7 +18,7 @@ spec: type: Directory containers: - name: busybox-ro-volume-container - image: busybox + image: quay.io/prometheus/busybox:latest volumeMounts: - name: shared-data mountPath: /tmp