From 4ef5e99f31c489b0a79289fc07719b7ba63ada91 Mon Sep 17 00:00:00 2001 From: Will Anderson Date: Mon, 4 May 2026 20:42:27 -0500 Subject: [PATCH] fix(ci-base): correct Gitea namespace in git insteadOf redirect Gitea lives in the 'git' namespace on Legion k3s, not 'gitea'. The system gitconfig redirect must use gitea.git.svc.cluster.local:3000. Update when Gitea migrates to GKE (namespace will be 'gitea' there). --- servers/legion/k8s/gitea-runner/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/servers/legion/k8s/gitea-runner/Dockerfile b/servers/legion/k8s/gitea-runner/Dockerfile index 59f8d1d..3e3d0f3 100644 --- a/servers/legion/k8s/gitea-runner/Dockerfile +++ b/servers/legion/k8s/gitea-runner/Dockerfile @@ -105,7 +105,7 @@ RUN curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg \ # (which sets the reverse redirect + CF Access headers). The system-level rule # here is a safe baseline; the init script wins because it runs after. RUN git config --system \ - url."http://gitea.gitea.svc.cluster.local:3000/".insteadOf \ + url."http://gitea.git.svc.cluster.local:3000/".insteadOf \ "https://git.neuralplatform.ai/" COPY git-cf-access-init.sh /usr/local/bin/git-cf-access-init.sh