From ef9bc157ad7d64a47ae2ca64e4cfecf14aa1f039 Mon Sep 17 00:00:00 2001 From: Ian Baum Date: Sat, 9 Feb 2019 13:55:57 -0600 Subject: [PATCH] Add PYTHONPATH to unicorn deployment Required for rendering RST files --- charts/gitlab/charts/unicorn/templates/deployment.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/charts/gitlab/charts/unicorn/templates/deployment.yaml b/charts/gitlab/charts/unicorn/templates/deployment.yaml index 46cdbb999f..18d149ff5d 100644 --- a/charts/gitlab/charts/unicorn/templates/deployment.yaml +++ b/charts/gitlab/charts/unicorn/templates/deployment.yaml @@ -124,6 +124,8 @@ spec: value: '/var/opt/gitlab/templates' - name: CONFIG_DIRECTORY value: '/srv/gitlab/config' + - name: PYTHONPATH + value: '/usr/local/lib/python3.4/site-packages' {{- if .Values.metrics.enabled }} - name: prometheus_multiproc_dir value: /metrics -- GitLab