From 29d681431ad154530cb4f9ff145aafc70a65c404 Mon Sep 17 00:00:00 2001 From: ChemaVX Date: Fri, 12 Jun 2026 07:58:52 +0000 Subject: [PATCH] fix(gitea): set ROOT_URL to https://git.chemavx.xyz matching the actual ingress MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The old ROOT_URL (gitea.chemavx.xyz) is not routed by traefik, so every URL Gitea generated from it was broken — including webhook payload repo URLs, which is why ArgoCD ignored real push events (host mismatch) and deploys waited for the ~3min polling cycle. Applied live on 2026-06-12. Co-Authored-By: Claude Fable 5 --- gitea/statefulset-gitea.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitea/statefulset-gitea.yaml b/gitea/statefulset-gitea.yaml index 2f1afd3..0f9ecf5 100644 --- a/gitea/statefulset-gitea.yaml +++ b/gitea/statefulset-gitea.yaml @@ -28,7 +28,7 @@ spec: - name: GITEA__server__DOMAIN value: gitea.chemavx.xyz - name: GITEA__server__ROOT_URL - value: https://gitea.chemavx.xyz + value: https://git.chemavx.xyz - name: GITEA__server__SSH_PORT value: '22' - name: GITEA__server__SSH_DOMAIN