Files
fedora-infra_ansible/roles/openshift-apps/waiverdb/templates/imagestream.yml.j2
Lukas Holecek 96be99434e greenwave+waiverdb: Update image repositories
The image builds where moved to Konflux.

This is similar to the pull request for ResultsDB:
https://pagure.io/fedora-infra/ansible/pull-request/3077

See also the discussion in PR:
https://github.com/release-engineering/resultsdb_frontend/pull/17
2026-02-12 16:21:29 +00:00

21 lines
548 B
Django/Jinja

---
apiVersion: image.openshift.io/v1
kind: ImageStream
metadata:
name: "waiverdb"
spec:
tags:
- name: latest
importPolicy:
scheduled: true
from:
kind: DockerImage
{% if env == 'staging' %}
# The latest successful build of master that passes tests
# is auto-tagged here.
name: quay.io/redhat-user-workloads/exd-sp-rhel-wf-tenant/waiverdb:latest
{% else %}
# This is 'prod' tag is maintained by hand.
name: quay.io/redhat-user-workloads/exd-sp-rhel-wf-tenant/waiverdb:prod-fedora
{% endif %}