From d5c832f89b69a5f5cf47d223c325acf5d0790f3e Mon Sep 17 00:00:00 2001 From: Gerald Nunn Date: Sun, 15 Oct 2023 20:25:15 -0700 Subject: [PATCH] Use quay.io for images instead of docker hub to avoid rate limiting --- bootstrap/user/templates/tools/update-image-task.yaml | 2 +- documentation/modules/ROOT/examples/bluegreen/base/rollout.yaml | 2 +- documentation/modules/ROOT/examples/deploy/base/deploy.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bootstrap/user/templates/tools/update-image-task.yaml b/bootstrap/user/templates/tools/update-image-task.yaml index 04a3643..1cd0c18 100644 --- a/bootstrap/user/templates/tools/update-image-task.yaml +++ b/bootstrap/user/templates/tools/update-image-task.yaml @@ -26,7 +26,7 @@ spec: oc patch -n $(inputs.params.namespace) $(inputs.params.kind) $(inputs.params.name) --patch='{"spec":{"template":{"spec":{ "containers":[{ "name": "$(inputs.params.name)", - "image":"docker.io/argoproj/rollouts-demo:$(inputs.params.color)" + "image":"quay.io/openshiftdemos/rollouts-demo:$(inputs.params.color)" }] }}}}' diff --git a/documentation/modules/ROOT/examples/bluegreen/base/rollout.yaml b/documentation/modules/ROOT/examples/bluegreen/base/rollout.yaml index 0ebddf4..8b81deb 100644 --- a/documentation/modules/ROOT/examples/bluegreen/base/rollout.yaml +++ b/documentation/modules/ROOT/examples/bluegreen/base/rollout.yaml @@ -15,7 +15,7 @@ spec: spec: containers: - name: rollouts-demo - image: docker.io/argoproj/rollouts-demo:blue + image: quay.io/openshiftdemos/rollouts-demo:blue imagePullPolicy: IfNotPresent ports: - containerPort: 8080 diff --git a/documentation/modules/ROOT/examples/deploy/base/deploy.yaml b/documentation/modules/ROOT/examples/deploy/base/deploy.yaml index 596ca1e..9dbeb55 100644 --- a/documentation/modules/ROOT/examples/deploy/base/deploy.yaml +++ b/documentation/modules/ROOT/examples/deploy/base/deploy.yaml @@ -14,7 +14,7 @@ spec: app: rollouts-demo spec: containers: - - image: docker.io/argoproj/rollouts-demo:blue + - image: quay.io/openshiftdemos/rollouts-demo:blue imagePullPolicy: IfNotPresent name: rollouts-demo ports: