Files
GitOps/nowchess/htwg-1-prod/ingress.yaml
T
Janis Eccarius c39661828b fix: wire analysis service to ingress across all clusters
Add /api/analysis → nowchess-analysis-active:8087 path rule to
eu-central-1-staging, eu-central-1-prod, and htwg-1-prod ingresses.
Rule placed before the /api catch-all so nginx routes correctly.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-21 10:32:01 +02:00

84 lines
2.3 KiB
YAML
Executable File

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: nowchess-ingress
annotations:
nginx.ingress.kubernetes.io/ssl-redirect: "false"
nginx.ingress.kubernetes.io/backend-protocol: "HTTP"
nginx.ingress.kubernetes.io/use-regex: "true"
spec:
ingressClassName: nginx
rules:
- http:
paths:
- path: /api/board/game/[A-Za-z0-9]{8}/ws
pathType: ImplementationSpecific
backend:
service:
name: nowchess-ws-active
port:
number: 8084
- path: /api/user/ws
pathType: ImplementationSpecific
backend:
service:
name: nowchess-ws-active
port:
number: 8084
- path: /api/account
pathType: Prefix
backend:
service:
name: nowchess-account-active
port:
number: 8083
- path: /api/challenge
pathType: Prefix
backend:
service:
name: nowchess-account-active
port:
number: 8083
- path: /api/store
pathType: Prefix
backend:
service:
name: nowchess-store-active
port:
number: 8085
- path: /api/tournament
pathType: Prefix
backend:
service:
name: nowchess-tournament-active
port:
number: 8088
- path: /api/bots
pathType: Prefix
backend:
service:
name: nowchess-official-bots-active
port:
number: 8088
- path: /api/analysis
pathType: Prefix
backend:
service:
name: nowchess-analysis-active
port:
number: 8087
- path: /api
pathType: Prefix
backend:
service:
name: nowchess-core-active
port:
number: 8080
- path: /
pathType: Prefix
backend:
service:
name: nowchess-frontend-active
port:
number: 80