From 5cbfbbd537a2e4d2ec5250ac2570da122ea97a45 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Fri, 9 Jan 2026 11:26:34 +0200 Subject: Set USE_CUSTOM_CONFIG=true to skip cgit template substitution The cgit entrypoint tries to write to /etc/cgitrc which is mounted read-only from our ConfigMap. Set USE_CUSTOM_CONFIG=true to use our custom cgitrc directly without template substitution. --- f3s/git-server/helm-chart/templates/deployment.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/f3s/git-server/helm-chart/templates/deployment.yaml b/f3s/git-server/helm-chart/templates/deployment.yaml index fe999cb..1af9770 100644 --- a/f3s/git-server/helm-chart/templates/deployment.yaml +++ b/f3s/git-server/helm-chart/templates/deployment.yaml @@ -79,6 +79,8 @@ spec: value: "f3s Git Repository Browser" - name: CGIT_DESC value: "Browse git repositories" + - name: USE_CUSTOM_CONFIG + value: "true" volumeMounts: - name: repos mountPath: /repos -- cgit v1.2.3