mirror of
https://github.com/thejimnicholson/uptime-kuma-k8s.git
synced 2025-12-06 03:30:44 +00:00
28 lines
694 B
YAML
28 lines
694 B
YAML
# https://kubernetes.io/docs/concepts/services-networking/ingress/
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: uptime-kuma-ingress
|
|
namespace: uptime-kuma
|
|
annotations:
|
|
kubernetes.io/ingress.class: "traefik"
|
|
traefik.ingress.kubernetes.io/redirect-entry-point: https
|
|
cert-manager.io/cluster-issuer: dns-clusterissuer
|
|
spec:
|
|
rules:
|
|
- host: uptime.thejimnicholson.com
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: uptime-kuma-web
|
|
port:
|
|
number: 80
|
|
tls:
|
|
- hosts:
|
|
- uptime.thejimnicholson.com
|
|
secretName: uptime.thejimnicholson.com
|
|
---
|