diff --git a/docker/proxy-init.Dockerfile b/docker/proxy-init.Dockerfile index c7e540d9f..9a1ec6fef 100644 --- a/docker/proxy-init.Dockerfile +++ b/docker/proxy-init.Dockerfile @@ -1,4 +1,4 @@ -ARG BASEIMAGE=k8s.gcr.io/build-image/debian-iptables:bullseye-v1.5.1 +ARG BASEIMAGE=registry.k8s.io/build-image/debian-iptables:bullseye-v1.5.1 FROM --platform=${TARGETPLATFORM:-linux/amd64} ${BASEIMAGE} diff --git a/test/e2e/helpers.go b/test/e2e/helpers.go index e664b4175..cfdffd3fa 100644 --- a/test/e2e/helpers.go +++ b/test/e2e/helpers.go @@ -157,7 +157,7 @@ func createPodUsingDeploymentWithServiceAccount(f *framework.Framework, serviceA Containers: []corev1.Container{ { Name: "busybox", - Image: "k8s.gcr.io/e2e-test-images/busybox:1.29-1", // this image supports both Linux and Windows + Image: "registry.k8s.io/e2e-test-images/busybox:1.29-4", // this image supports both Linux and Windows Command: []string{"sleep"}, Args: []string{"3600"}, ImagePullPolicy: corev1.PullIfNotPresent, diff --git a/test/e2e/webhook.go b/test/e2e/webhook.go index 0fcfc221c..d4536690f 100644 --- a/test/e2e/webhook.go +++ b/test/e2e/webhook.go @@ -25,7 +25,7 @@ var _ = ginkgo.Describe("Webhook", func() { f.ClientSet, f.Namespace.Name, serviceAccount, - "k8s.gcr.io/e2e-test-images/busybox:1.29-1", + "registry.k8s.io/e2e-test-images/busybox:1.29-4", []string{"sleep"}, []string{"3600"}, nil, @@ -44,7 +44,7 @@ var _ = ginkgo.Describe("Webhook", func() { f.ClientSet, f.Namespace.Name, serviceAccount, - "k8s.gcr.io/e2e-test-images/busybox:1.29-1", + "registry.k8s.io/e2e-test-images/busybox:1.29-4", []string{"sleep"}, []string{"3600"}, nil, @@ -54,7 +54,7 @@ var _ = ginkgo.Describe("Webhook", func() { ) pod.Spec.InitContainers = []corev1.Container{{ Name: "init-container", - Image: "k8s.gcr.io/e2e-test-images/busybox:1.29-1", + Image: "registry.k8s.io/e2e-test-images/busybox:1.29-4", ImagePullPolicy: corev1.PullIfNotPresent, Command: []string{"sleep"}, Args: []string{"5"}, @@ -96,7 +96,7 @@ var _ = ginkgo.Describe("Webhook", func() { f.ClientSet, f.Namespace.Name, serviceAccount, - "k8s.gcr.io/e2e-test-images/busybox:1.29-1", + "registry.k8s.io/e2e-test-images/busybox:1.29-4", []string{"sleep"}, []string{"3600"}, nil, @@ -119,7 +119,7 @@ var _ = ginkgo.Describe("Webhook", func() { f.ClientSet, f.Namespace.Name, serviceAccount, - "k8s.gcr.io/e2e-test-images/busybox:1.29-1", + "registry.k8s.io/e2e-test-images/busybox:1.29-4", []string{"sleep"}, []string{"3600"}, nil, @@ -137,7 +137,7 @@ var _ = ginkgo.Describe("Webhook", func() { f.ClientSet, f.Namespace.Name, serviceAccount, - "k8s.gcr.io/e2e-test-images/busybox:1.29-1", + "registry.k8s.io/e2e-test-images/busybox:1.29-4", []string{"sleep"}, []string{"3600"}, nil,