This commit is contained in:
2025-04-04 20:59:32 +02:00
parent c2cfef7397
commit 2ae346e8ef
7 changed files with 171 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: keycloak
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
# nginx.ingress.kubernetes.io/backend-protocol: "HTTP"
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
spec:
ingressClassName: nginx
tls:
- hosts:
- n8n.prod.panic.haus
secretName: n8n-tls
rules:
- host: n8n.prod.panic.haus
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: n8n
port:
number: 5678