diff options
author | Ralph Bean <rbean@redhat.com> | 2017-08-24 04:40:38 +0000 |
---|---|---|
committer | Ralph Bean <rbean@redhat.com> | 2017-08-24 04:40:38 +0000 |
commit | 7f26aafa450057066aea116faaf70ca56c5ffb8b (patch) | |
tree | d5a43df234e36e0eb530673bb196e3eb0f88199b | |
parent | 742d4c1978cc91d3adcd6f50602c7e82b0be7d6a (diff) | |
download | ansible-7f26aafa450057066aea116faaf70ca56c5ffb8b.tar.gz ansible-7f26aafa450057066aea116faaf70ca56c5ffb8b.tar.xz ansible-7f26aafa450057066aea116faaf70ca56c5ffb8b.zip |
Clean up all that debugging stuff.
-rw-r--r-- | roles/openshift-apps/greenwave/templates/buildconfig.yml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/roles/openshift-apps/greenwave/templates/buildconfig.yml b/roles/openshift-apps/greenwave/templates/buildconfig.yml index 231cd8cde..724f88ca8 100644 --- a/roles/openshift-apps/greenwave/templates/buildconfig.yml +++ b/roles/openshift-apps/greenwave/templates/buildconfig.yml @@ -13,17 +13,13 @@ spec: name="Greenwave" \ vendor="Fedora Infrastructure" \ license="MIT" - RUN cat /etc/resolv.conf - RUN ping -c 3 10.5.126.22 - RUN nslookup https://mirrors.fedoraproject.org/ - RUN curl https://mirrors.fedoraproject.org/ RUN yum -y install --setopt=tsflags=nodocs \ python-gunicorn \ python-requests \ PyYAML \ python2-flask - RUN yum -y install --setopt=tsflags=nodocs \ - https://kojipkgs.fedoraproject.org//packages/greenwave/0.1.1/1.02795e8.fc26/noarch/greenwave-0.1.1-1.02795e8.fc26.noarch.rpm + RUN yum -y install --setopt=tsflags=nodocs \ + https://kojipkgs.fedoraproject.org//packages/greenwave/0.1.1/1.02795e8.fc26/noarch/greenwave-0.1.1-1.02795e8.fc26.noarch.rpm EXPOSE 8080 ENTRYPOINT gunicorn --bind 0.0.0.0:8080 --access-logfile=- greenwave.wsgi:app strategy: |