Files
ai/deploy/k8s/dev/gateway-health-ingress.yaml

20 lines
389 B
YAML

---
# Separate ingress for health endpoint without rewrite
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: gateway-health-ingress
spec:
ingressClassName: nginx
rules:
- host: dexorder.local
http:
paths:
- path: /health
pathType: Exact
backend:
service:
name: gateway
port:
number: 3000