From 9419aa91a7f2c70c7fb2a1fc60b41c146d1b57b7 Mon Sep 17 00:00:00 2001 From: Xun Jiang Date: Mon, 14 Feb 2022 19:58:45 +0800 Subject: [PATCH] Update e2e test image to gcr.io By now, only busybox:latest is used by e2e. It is already upload to gcr.io/velero-gcp/busybox:latest Change the image to gcr.io to avoid pulling rate limitation from docker hub. Signed-off-by: Xun Jiang --- changelogs/unreleased/4639-jxun | 1 + test/e2e/util/k8s/deployment.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changelogs/unreleased/4639-jxun diff --git a/changelogs/unreleased/4639-jxun b/changelogs/unreleased/4639-jxun new file mode 100644 index 000000000..a027b1b00 --- /dev/null +++ b/changelogs/unreleased/4639-jxun @@ -0,0 +1 @@ +Update image used by E2E test to gcr.io diff --git a/test/e2e/util/k8s/deployment.go b/test/e2e/util/k8s/deployment.go index 6763c3e9b..bfa1252a2 100644 --- a/test/e2e/util/k8s/deployment.go +++ b/test/e2e/util/k8s/deployment.go @@ -62,7 +62,7 @@ func NewDeployment(name, ns string, replicas int32, labels map[string]string) *a Containers: []v1.Container{ { Name: name, - Image: "busybox:latest", + Image: "gcr.io/velero-gcp/busybox:latest", Command: []string{"sleep", "1000000"}, }, },