Files
infra-prod/deploy/elk-stack/kibana-ingress.yaml
2025-03-31 04:24:36 +02:00

27 lines
637 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: kibana-ingress
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
nginx.ingress.kubernetes.io/backend-protocol: "HTTPS"
spec:
ingressClassName: nginx
tls:
- hosts:
- query.prod.panic.haus
secretName: kibana-tls
rules:
- host: query.prod.panic.haus
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: kibana-ha-kb-http
port:
number: 5601