PFEE/dashboard-sqdc/k8s/ingress.yaml
Alexis Bruneteau 35614903d6 feat: Update k8s ingress configuration
- Change host to diwii.sortifal.dev
- Remove HTTPS/TLS configuration (handled upstream)
- Simplify ingress rules for HTTP-only routing

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-22 01:29:54 +02:00

22 lines
489 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: sqdc-dashboard-ingress
namespace: sqdc-dashboard
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
nginx.ingress.kubernetes.io/ssl-redirect: "false"
spec:
ingressClassName: nginx
rules:
- host: diwii.sortifal.dev
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: sqdc-dashboard-service
port:
number: 80