add ingress

This commit is contained in:
2025-04-05 22:53:20 +02:00
parent 96a4e310c8
commit 815255d4da

View File

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