From e7736f0f18ce3dbf81a4327cedbc276d60a39c50 Mon Sep 17 00:00:00 2001 From: Clement Verna Date: Sat, 12 Jan 2019 15:15:14 +0100 Subject: [PATCH] MDAPI: fix openshift configmap syntax Signed-off-by: Clement Verna --- roles/openshift-apps/mdapi/templates/configmap.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/openshift-apps/mdapi/templates/configmap.yml b/roles/openshift-apps/mdapi/templates/configmap.yml index 212b854f66..a9320af5d1 100644 --- a/roles/openshift-apps/mdapi/templates/configmap.yml +++ b/roles/openshift-apps/mdapi/templates/configmap.yml @@ -12,9 +12,9 @@ data: PREFIX = '/mdapi' DL_VERIFY = False {% if env == 'staging' %} -KOJI_REPO = 'https://koji.stg.fedoraproject.org/repos/' -DL_SERVER = 'http://dl.phx2.fedoraproject.org' + KOJI_REPO = 'https://koji.stg.fedoraproject.org/repos/' + DL_SERVER = 'http://dl.phx2.fedoraproject.org' {% else %} -KOJI_REPO = 'https://koji.fedoraproject.org/repos/' -DL_SERVER = 'http://dl.phx2.fedoraproject.org' + KOJI_REPO = 'https://koji.fedoraproject.org/repos/' + DL_SERVER = 'http://dl.phx2.fedoraproject.org' {% endif %}