diff options
| author | Paul Buetow <paul@buetow.org> | 2026-01-10 20:24:43 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-01-10 20:24:43 +0200 |
| commit | 90abde069fac1f5d4741ff1773462ff5d5f6916e (patch) | |
| tree | b7accff6641e3b29cfc96ffa6e68fb74fcce0c39 | |
| parent | 2075ff1c3b0b4ca2bea14a765a8551f0c0691913 (diff) | |
Update git-server README to use explicit NodePort in gitsyncer config
Replace git@git-server:/repos/repos with ssh://git@r0:30022/repos/repos
in the documentation to match the actual configuration and make the
NodePort usage explicit. SSH alias approach now documented as optional.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
| -rw-r--r-- | f3s/git-server/helm-chart/README.md | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/f3s/git-server/helm-chart/README.md b/f3s/git-server/helm-chart/README.md index 32b3cca..52a3d12 100644 --- a/f3s/git-server/helm-chart/README.md +++ b/f3s/git-server/helm-chart/README.md @@ -107,16 +107,18 @@ Gitsyncer syncs repositories from Codeberg/GitHub to the self-hosted git-server "name": "snonux" }, { - "host": "git@git-server:/repos/repos", + "host": "ssh://git@r0:30022/repos/repos", "backupLocation": true } ] } ``` -### SSH Config for Gitsyncer +**Note**: The config uses explicit NodePort (30022) on cluster node r0. You could also use an SSH alias (see below) with `git@git-server:/repos/repos` for shorter syntax. -Add to `~/.ssh/config`: +### SSH Config for Gitsyncer (Optional) + +If you prefer using an SSH alias instead of the explicit URL, add to `~/.ssh/config`: ``` Host git-server HostName r0 |
