Files
userbot/uptime-kuma/k8s/ingress.yaml
T

48 lines
926 B
YAML

apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: uptime-kuma-prod
namespace: uptime-kuma
spec:
entryPoints:
- websecure
routes:
- match: Host(`uptime.forust.xyz`)
kind: Rule
services:
- name: uptime-kuma-service
port: 3001
tls:
certResolver: letsencrypt
---
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: uptime-kuma-local
namespace: uptime-kuma
spec:
entryPoints:
- websecure
routes:
- match: Host(`uptime.workstation.internal`)
kind: Rule
services:
- name: uptime-kuma-service
port: 3001
---
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: uptime-kuma-dev
namespace: uptime-kuma
spec:
entryPoints:
- websecure
routes:
- match: Host(`uptime.gigaforust.internal`)
kind: Rule
services:
- name: uptime-kuma-service
port: 3001