diff options
| author | Max Resnick <max@ofmax.li> | 2024-04-15 20:54:53 -0700 |
|---|---|---|
| committer | Max Resnick <max@ofmax.li> | 2024-06-01 22:38:22 -0700 |
| commit | 31fbde46fab0dbed8c572573dfbc75593d9b3702 (patch) | |
| tree | bd4863297bc7aa32cf97d7bfbe53db9d14dc5b05 /manifests/cgit/cgit-cm.yaml | |
| parent | b8584fec70bd6810fa2392deadc69595b3e94cfa (diff) | |
| download | go-git-server-31fbde46fab0dbed8c572573dfbc75593d9b3702.tar.gz | |
feat: kubernetes deployment manifests
adds deployment manifests for cgit and go-git-server
Diffstat (limited to 'manifests/cgit/cgit-cm.yaml')
| -rw-r--r-- | manifests/cgit/cgit-cm.yaml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/manifests/cgit/cgit-cm.yaml b/manifests/cgit/cgit-cm.yaml new file mode 100644 index 0000000..e01a6b5 --- /dev/null +++ b/manifests/cgit/cgit-cm.yaml @@ -0,0 +1,39 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: cgitrc +data: + cgitrc: | + # cgit config + # see cgitrc(5) for details + root-title=git.ofmax.li + root-desc=grumpy software + + readme=:README.md + + about-filter=/usr/lib/cgit/filters/about-formatting.sh + source-filter=/usr/lib/cgit/filters/syntax-highlighting.py + + enable-index-links=1 + enable-log-filecount=1 + enable-commit-graph=1 + enable-index-owner=1 + enable-http-clone=0 + enable-git-config=1 + enable-commit-graph=1 + enable-follow-links=1 + snapshots=tar.gz + css=/cgit.css + logo=/cgit.png + virtual-root=/ + robots=nofollow + remove-suffix=1 + + mimetype.html=text/html + mimetype.jpg=image/jpeg + mimetype.jpeg=image/jpeg + mimetype.pdf=application/pdf + mimetype.png=image/png + + strict-export=git-web-export-ok + scan-path=/opt/repos |