diff options
| author | Paul Buetow <paul@buetow.org> | 2026-01-09 11:34:58 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-01-09 19:40:51 +0200 |
| commit | a14bbf6775c1b62c996ea4b63d1fe1de3ddfc39f (patch) | |
| tree | e8fb629ffc0a35d9c9629a0343509e3fd80fbd6a | |
| parent | 42a21f794f7082d3ddb6e7906d2a373c8135dd9f (diff) | |
Remove fsGroup to fix nginx worker setgid errors
The fsGroup: 1000 was causing nginx workers to fail with setgid errors
even after removing 'user nginx;' directive. Since both containers run
as root, fsGroup is not needed for repo access.
| -rw-r--r-- | f3s/git-server/helm-chart/templates/deployment.yaml | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/f3s/git-server/helm-chart/templates/deployment.yaml b/f3s/git-server/helm-chart/templates/deployment.yaml index 12a235a..7381178 100644 --- a/f3s/git-server/helm-chart/templates/deployment.yaml +++ b/f3s/git-server/helm-chart/templates/deployment.yaml @@ -15,9 +15,6 @@ spec: labels: app: git-server spec: - securityContext: - fsGroup: 1000 - initContainers: - name: setup image: alpine:3.19 |
