From 24e8e19f3ca6d12c762e1358bf8567705c9bde5f Mon Sep 17 00:00:00 2001 From: zhangguanzhang Date: Wed, 3 Jul 2024 22:18:15 +0800 Subject: [PATCH] CI: update busybox image to fix CI --- integration/framework/framework.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/framework/framework.go b/integration/framework/framework.go index 864f430bd3..8303c6bb9a 100644 --- a/integration/framework/framework.go +++ b/integration/framework/framework.go @@ -220,7 +220,7 @@ func (a dockerActions) RunPause() string { // Run the specified command in a Docker busybox container. func (a dockerActions) RunBusybox(cmd ...string) string { return a.Run(DockerRunArgs{ - Image: "registry.k8s.io/busybox", + Image: "registry.k8s.io/busybox:1.27", }, cmd...) }