ansible/roles/openshift-apps/fedora-packages-static/templates/buildconfig.yml.j2
Ryan Lerch 23425ee0b9 fedora-packages-static - rename yml templates to .j2
Signed-off-by: Ryan Lerch <rlerch@redhat.com>
2025-01-14 08:37:32 +10:00

28 lines
570 B
Django/Jinja

---
apiVersion: build.openshift.io/v1
kind: BuildConfig
metadata:
name: fedora-packages-static-build
labels:
environment: "fedora-packages-static"
spec:
output:
to:
kind: ImageStreamTag
name: fedora-packages-static:latest
source:
type: Git
git:
uri: https://pagure.io/fedora-packages-static.git
{% if env == 'staging' %}
ref: "staging"
{% else %}
ref: "production"
{% endif %}
strategy:
type: Docker
dockerStrategy:
dockerfilePath: Dockerfile
triggers:
- type: ConfigChange
- type: ImageChange