mirror of
https://github.com/auricom/home-cluster.git
synced 2025-09-30 15:37:44 +02:00
28 lines
695 B
YAML
28 lines
695 B
YAML
---
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: rook-ceph-mgr-dashboard
|
|
namespace: rook-ceph
|
|
annotations:
|
|
kubernetes.io/ingress.class: "nginx"
|
|
nginx.ingress.kubernetes.io/backend-protocol: "HTTP"
|
|
labels:
|
|
app.kubernetes.io/instance: rook-ceph-mgr-dashboard
|
|
app.kubernetes.io/name: rook-ceph-mgr-dashboard
|
|
spec:
|
|
rules:
|
|
- host: "rook.${SECRET_CLUSTER_DOMAIN}"
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: rook-ceph-mgr-dashboard
|
|
port:
|
|
name: http-dashboard
|
|
tls:
|
|
- hosts:
|
|
- "rook.${SECRET_CLUSTER_DOMAIN}"
|