add grafana

This commit is contained in:
2025-03-29 19:00:04 +01:00
parent 1b05fea804
commit 6e20584bba
5 changed files with 117 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: grafana-ingress
namespace: grafana
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
spec:
ingressClassName: nginx
tls:
- hosts:
- obs.prod.panic.haus
secretName: drone-tls
rules:
- host: obs.prod.panic.haus
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: grafana
port:
number: 3000