Files
gitops/infrastructure/rook-ceph/ingress-dashboard.yaml
2026-01-14 01:52:08 +00:00

26 lines
649 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: rook-ceph-dashboard
namespace: rook-ceph
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
traefik.ingress.kubernetes.io/router.entrypoints: websecure
spec:
ingressClassName: traefik
tls:
- hosts:
- ceph.apps.internal.k3s.stabify.de
secretName: ceph-dashboard-tls
rules:
- host: ceph.apps.internal.k3s.stabify.de
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: rook-ceph-mgr-dashboard
port:
number: 8443