From 1201377d2c70e8a32293a3a156d75b3d5c585b6b Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Thu, 1 Aug 2019 22:30:52 +0000 Subject: [PATCH] fas / totpcgi: see if I can see why my builds are hanging in curl in prod. Signed-off-by: Kevin Fenzi --- .../openshift-apps/fas/templates/buildconfig-totpcgi.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/openshift-apps/fas/templates/buildconfig-totpcgi.yml b/roles/openshift-apps/fas/templates/buildconfig-totpcgi.yml index 3562c962ea..1cef7ea660 100644 --- a/roles/openshift-apps/fas/templates/buildconfig-totpcgi.yml +++ b/roles/openshift-apps/fas/templates/buildconfig-totpcgi.yml @@ -9,12 +9,12 @@ spec: source: dockerfile: |- FROM registry.access.redhat.com/rhel6 - RUN curl -o /etc/yum.repos.d/rhel6.repo https://infrastructure.fedoraproject.org/cgit/ansible.git/plain/files/common/rhel6.repo && \ - curl -o /etc/yum.repos.d/epel6.repo https://infrastructure.fedoraproject.org/cgit/ansible.git/plain/files/common/epel6.repo && \ + RUN curl -v -o /etc/yum.repos.d/rhel6.repo https://infrastructure.fedoraproject.org/cgit/ansible.git/plain/files/common/rhel6.repo && \ + curl -v -o /etc/yum.repos.d/epel6.repo https://infrastructure.fedoraproject.org/cgit/ansible.git/plain/files/common/epel6.repo && \ {% if env == "staging" %} - curl -o /etc/yum.repos.d/infra-tags-stg.repo https://infrastructure.fedoraproject.org/cgit/ansible.git/plain/files/common/rhel-infra-tags-stg.repo && \ + curl -v -o /etc/yum.repos.d/infra-tags-stg.repo https://infrastructure.fedoraproject.org/cgit/ansible.git/plain/files/common/rhel-infra-tags-stg.repo && \ {% endif %} - curl -o /etc/yum.repos.d/infra-tags.repo https://infrastructure.fedoraproject.org/cgit/ansible.git/plain/files/common/rhel-infra-tags.repo + curl -v -o /etc/yum.repos.d/infra-tags.repo https://infrastructure.fedoraproject.org/cgit/ansible.git/plain/files/common/rhel-infra-tags.repo RUN yum install -y \ mod_auth_pgsql \