From 59b1f3e63eed92f976a7dbefc9c0bb467e47e099 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Kone=C4=8Dn=C3=BD?= Date: Tue, 20 Jul 2021 17:52:34 +0200 Subject: [PATCH] release-monitoring: Update to F34 on staging MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will sync the current staging with current master Signed-off-by: Michal Konečný --- .../release-monitoring/templates/buildconfig.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/roles/openshift-apps/release-monitoring/templates/buildconfig.yml b/roles/openshift-apps/release-monitoring/templates/buildconfig.yml index 3ffd482f81..566aa18f9a 100644 --- a/roles/openshift-apps/release-monitoring/templates/buildconfig.yml +++ b/roles/openshift-apps/release-monitoring/templates/buildconfig.yml @@ -10,7 +10,11 @@ items: runPolicy: Serial source: dockerfile: |- +{% if env == 'staging' %} + FROM fedora:34 +{% else %} FROM fedora:32 +{% endif %} LABEL \ name="release-monitoring-web" \ vendor="Fedora Infrastructure" \ @@ -21,6 +25,9 @@ items: graphviz \ fedora-messaging \ python3-alembic \ +{% if env == 'staging' %} + python3-beautifulsoup4 \ +{% endif %} python3-arrow \ python3-dateutil \ python3-defusedxml \ @@ -32,15 +39,22 @@ items: python3-ordered-set \ python3-pip \ python3-psycopg2 \ +{% if env == 'staging' %} python3-pytoml \ python3-semver \ python3-social-auth-app-flask \ python3-social-auth-app-flask-sqlalchemy \ +{% else %} + python3-semver \ +{% endif %} python3-sphinxcontrib-httpdomain \ python3-sqlalchemy \ python3-sqlalchemy_schemadisplay \ python3-sseclient \ python3-straight-plugin \ +{% if env == 'staging' %} + python3-toml \ +{% endif %} python3-wtforms && \ dnf autoremove -y && \ dnf clean all -y