mirror of
https://gitlab.kube.huskypup.net/Scooby/Homelabv4.git
synced 2026-08-21 05:26:49 +00:00
Fix VPS GitLab ingress backend service name
Ingress pointed at 'gitlab-webservice-default' but the chart release name on the VPS is 'vps-gitlab', so the actual Service Helm creates is 'vps-gitlab-webservice-default' (confirmed via 'kubectl get svc -n gitlab'). Home's GitLab isn't affected - it routes via Istio VirtualService, not this Ingress, and its release name has no prefix. This was the actual cause of the persistent 404 - webservice pod was healthy and passing readiness checks the whole time, Traefik just had no matching backend to route to. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Sonnet 5
parent
989d42dd50
commit
ab084715e6
@@ -37,6 +37,6 @@ spec:
|
|||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
backend:
|
backend:
|
||||||
service:
|
service:
|
||||||
name: gitlab-webservice-default
|
name: vps-gitlab-webservice-default
|
||||||
port:
|
port:
|
||||||
number: 8181
|
number: 8181
|
||||||
|
|||||||
Reference in New Issue
Block a user