mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-19 19:46:38 +08:00
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
21 lines
548 B
Django/Jinja
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 %}
|