From ab4db86c3c7dd7cb9c440fa66dce26dfba5bcb4d Mon Sep 17 00:00:00 2001 From: Clement Verna Date: Thu, 16 May 2019 14:39:44 +0200 Subject: [PATCH] greenwave: greenwave now uses a entrypoint script instead of command. New deployement of greenwave is failing because the way the container are started have changed. We need to stop overriding the entrypoint. This will drop our custom timeout for gunicorn. Signed-off-by: Clement Verna --- roles/openshift-apps/greenwave/templates/buildconfig.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/roles/openshift-apps/greenwave/templates/buildconfig.yml b/roles/openshift-apps/greenwave/templates/buildconfig.yml index 6a50d188ac..7d50985a65 100644 --- a/roles/openshift-apps/greenwave/templates/buildconfig.yml +++ b/roles/openshift-apps/greenwave/templates/buildconfig.yml @@ -37,7 +37,6 @@ spec: # Become non-root again USER 1001 - ENTRYPOINT docker/install-ca.sh && gunicorn-3 --workers 8 --timeout 127 --bind 0.0.0.0:8080 --access-logfile=- --enable-stdio-inheritance greenwave.wsgi:app {% endif %} strategy: type: Docker