diff options
| author | Paul Buetow <paul@buetow.org> | 2026-01-09 11:09:43 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-01-09 11:09:43 +0200 |
| commit | 5cbeb2bb335c2363bc7d7706dbf6120c8ca5fa82 (patch) | |
| tree | 03cb4e767907d2c12e22bec729baeecde6641d09 /f3s/git-server/helm-chart | |
| parent | 634f98a69d398f82800d349489d3c279879aaae6 (diff) | |
Fix git-server deployment
- Use registry.lan.buetow.org for deployment (internal DNS)
- Add emptyDir volume for cgit cache directory
- Add README.md with deployment and secret management instructions
This fixes image pull issues and cgit permission errors.
Diffstat (limited to 'f3s/git-server/helm-chart')
| -rw-r--r-- | f3s/git-server/helm-chart/templates/deployment.yaml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/f3s/git-server/helm-chart/templates/deployment.yaml b/f3s/git-server/helm-chart/templates/deployment.yaml index 7e262f8..a3f4568 100644 --- a/f3s/git-server/helm-chart/templates/deployment.yaml +++ b/f3s/git-server/helm-chart/templates/deployment.yaml @@ -22,7 +22,7 @@ spec: containers: # Container 1: SSH Git Server - name: git-server - image: r0.lan.buetow.org:30001/git-server:1.0 + image: registry.lan.buetow.org:30001/git-server:1.0 ports: - containerPort: 22 name: ssh @@ -68,6 +68,8 @@ spec: mountPath: /etc/cgitrc subPath: cgitrc readOnly: true + - name: cgit-cache + mountPath: /var/cache/cgit securityContext: runAsUser: 33 runAsGroup: 33 @@ -95,3 +97,5 @@ spec: - name: cgit-config configMap: name: cgit-config + - name: cgit-cache + emptyDir: {} |
