From 8344d5eb3b384fbe83f5cd619ece7a5262caf7a6 Mon Sep 17 00:00:00 2001 From: Kingdon Barrett Date: Sat, 25 Aug 2018 13:36:01 -0400 Subject: [PATCH] feat(controller): permit setting GUNICORN_WORKERS and CONN_MAX_AGE from global values.yaml --- charts/controller/templates/controller-deployment.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/charts/controller/templates/controller-deployment.yaml b/charts/controller/templates/controller-deployment.yaml index b9a5a688d..83368e461 100644 --- a/charts/controller/templates/controller-deployment.yaml +++ b/charts/controller/templates/controller-deployment.yaml @@ -73,6 +73,10 @@ spec: value: "{{ .Values.global.registry_location }}" - name: "DEIS_REGISTRY_SECRET_PREFIX" value: "{{ .Values.global.secret_prefix }}" + - name: "GUNICORN_WORKERS" + value: "{{ .Values.global.gunicorn_workers }}" + - name: "CONN_MAX_AGE" + value: "{{ .Values.global.conn_max_age }}" - name: "SLUGRUNNER_IMAGE_NAME" valueFrom: configMapKeyRef: