From f2213b56b4128406ebc90863ffd7dbb8efd4780e Mon Sep 17 00:00:00 2001 From: Scooby Husky Date: Mon, 17 Aug 2026 22:16:49 -0500 Subject: [PATCH] Fix Gitea mirror: use service=git instead of service=gitlab service=gitlab invokes Gitea's GitLab-API-based downloader (for issues/ PRs/releases metadata), which calls the source's /api/v4/projects/... REST API rather than doing a plain git clone. That was 404ing against home GitLab and getting swallowed into a generic 'InternalServerError: 404 Not Found' with no further detail. We only want a plain pull-mirror of the git repo itself, so service=git forces the plain git-clone downloader instead. --- .../vps-standby/gitea/manifests/setup-mirror-job.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/vps-standby/gitea/manifests/setup-mirror-job.yaml b/infrastructure/vps-standby/gitea/manifests/setup-mirror-job.yaml index 17895bf..2b55032 100644 --- a/infrastructure/vps-standby/gitea/manifests/setup-mirror-job.yaml +++ b/infrastructure/vps-standby/gitea/manifests/setup-mirror-job.yaml @@ -77,7 +77,7 @@ spec: \"private\": false, \"auth_username\": \"${GITLAB_USER}\", \"auth_password\": \"${GITLAB_TOKEN}\", - \"service\": \"gitlab\" + \"service\": \"git\" }" echo "==> Done."