From 6bf5964ef2c2f616ca2478c033e429227a00460e Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Thu, 1 Aug 2024 01:24:07 -0700 Subject: [PATCH] waiverdb: flip back to using factory2 container remote The fixes for https://github.com/release-engineering/waiverdb/issues/219 were merged and the factory2 'latest' image now includes them. 'prod-fedora' does not, so for now, we'll have prod use 'latest' instead. Signed-off-by: Adam Williamson --- roles/openshift-apps/waiverdb/templates/imagestream.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/roles/openshift-apps/waiverdb/templates/imagestream.yml b/roles/openshift-apps/waiverdb/templates/imagestream.yml index 7b6febdc7c..8d21168e04 100644 --- a/roles/openshift-apps/waiverdb/templates/imagestream.yml +++ b/roles/openshift-apps/waiverdb/templates/imagestream.yml @@ -17,10 +17,12 @@ spec: {% if env == 'staging' %} # The latest successful build of master that passes tests # is auto-tagged here. - name: quay.io/adamwill/waiverdb-test:latest + name: quay.io/factory2/waiverdb:latest {% else %} # This is 'prod' tag is maintained by hand. # name: quay.io/factory2/waiverdb:prod-fedora - # Changing prod just for now to this image - name: quay.io/adamwill/waiverdb-test:latest + # Changing prod just for now to this image as the fix + # for https://github.com/release-engineering/waiverdb/issues/219 + # is not yet in prod-fedora + name: quay.io/factory2/waiverdb:latest {% endif %}