From 6c197650e099df09d217d0693965730a21079f48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20Kone=C4=8Dn=C3=BD?= Date: Fri, 15 Feb 2019 10:58:31 +0100 Subject: [PATCH] the-new-hotness: Fix bugzilla configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Konečný --- .../the-new-hotness/templates/configmap.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/roles/openshift-apps/the-new-hotness/templates/configmap.yml b/roles/openshift-apps/the-new-hotness/templates/configmap.yml index 1f59bcdabc..f7d383634d 100644 --- a/roles/openshift-apps/the-new-hotness/templates/configmap.yml +++ b/roles/openshift-apps/the-new-hotness/templates/configmap.yml @@ -98,13 +98,16 @@ items: [consumer_config.bugzilla] enabled = true - #user = None - #password = None - api_key = "{{ upstream_release_bugzilla_api_token }}" {% if env == "staging" %} + user = "{{ upstream_release_bugzilla_user }}" + password = "{{ upstream_release_bugzilla_password }}" + api_key = "" url = "https://partner-bugzilla.redhat.com" explanation_url = "https://stg.fedoraproject.org/wiki/Upstream_release_monitoring" {% else %} + user = "" + password = "" + api_key = "{{ upstream_release_bugzilla_api_token }}" url = "https://bugzilla.redhat.com" explanation_url = "https://fedoraproject.org/wiki/Upstream_release_monitoring" {% endif %}