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 <jxun@vmware.com>
This commit is contained in:
Xun Jiang
2022-02-14 19:58:45 +08:00
parent 3e847fd5da
commit 9419aa91a7
2 changed files with 2 additions and 1 deletions

View File

@@ -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"},
},
},