fedocal: conditionalize the new container to staging until we can sort out the problems

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2024-09-18 13:10:30 -07:00
parent 3bd1491ece
commit f2d34ae0e1

View file

@ -24,7 +24,11 @@ spec:
from: from:
kind: ImageStreamTag kind: ImageStreamTag
namespace: openshift namespace: openshift
{% if env == 'staging' %}
name: python:3.11-ubi9 name: python:3.11-ubi9
{% else %}
name: python:3.6
{% endif %}
triggers: triggers:
- type: ConfigChange - type: ConfigChange
- type: ImageChange - type: ImageChange