From d77143b78bedb6a4726772aba2fc26e06d5569b3 Mon Sep 17 00:00:00 2001 From: Nikhil Thomas Date: Wed, 15 Sep 2021 14:28:26 +0530 Subject: [PATCH] Replace busybox image url Replace busybox image reference from mirror.gcr.io/library/busybox to gcr.io/google-containers/busybox Signed-off-by: Nikhil Thomas --- openshift/release/update-to-head.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openshift/release/update-to-head.sh b/openshift/release/update-to-head.sh index 2b26f102172..cdc94f9d171 100755 --- a/openshift/release/update-to-head.sh +++ b/openshift/release/update-to-head.sh @@ -37,7 +37,7 @@ fi find . -type f -name '*.go' -o -name '*.yaml' | \ xargs -P6 -L1 -r sed -E -i \ -e 's,image: ubuntu$,image: public.ecr.aws/ubuntu/ubuntu:latest,' -e 's,"ubuntu","public.ecr.aws/ubuntu/ubuntu",g' \ - -e 's,"busybox","mirror.gcr.io/library/busybox",g' -e 's,image: busybox$,image: mirror.gcr.io/library/busybox,' + -e 's,"busybox","gcr.io/google-containers/busybox",g' -e 's,image: busybox$,image: gcr.io/google-containers/busybox,' git commit -a -m ":robot: Switching image from docker.io to public cloud providers registry"