Skip to content

Commit

Permalink
Use quay.io for images instead of docker hub to avoid rate limiting
Browse files Browse the repository at this point in the history
  • Loading branch information
gnunn1 committed Oct 16, 2023
1 parent 0c77e45 commit d5c832f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bootstrap/user/templates/tools/update-image-task.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
}]
}}}}'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit d5c832f

Please sign in to comment.