26 lines
642 B
YAML
26 lines
642 B
YAML
|
apiVersion: networking.k8s.io/v1
|
||
|
kind: Ingress
|
||
|
metadata:
|
||
|
namespace: uptime-kuma
|
||
|
name: app-ingress
|
||
|
annotations:
|
||
|
cert-manager.io/cluster-issuer: letsencrypt-production
|
||
|
external-dns.alpha.kubernetes.io/hostname: status.van-hemmen.com
|
||
|
traefik.ingress.kubernetes.io/router.entrypoints: websecure
|
||
|
spec:
|
||
|
rules:
|
||
|
- host: status.van-hemmen.com
|
||
|
http:
|
||
|
paths:
|
||
|
- path: /
|
||
|
pathType: Prefix
|
||
|
backend:
|
||
|
service:
|
||
|
name: app
|
||
|
port:
|
||
|
number: 3001
|
||
|
tls:
|
||
|
- hosts:
|
||
|
- status.van-hemmen.com
|
||
|
secretName: status-app-tls
|