Files
userbot/termix/k8s/ingress.yaml
T
forust 4ca3ccdad3 chore(k8s): router rewrite
- returned to Host matcher instead of Hostregexp
- switched dockercompose labels to letsencrypt
- renamed DoH route
2026-06-16 12:34:15 +02:00

32 lines
619 B
YAML

apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: termix-prod
namespace: termix
spec:
entryPoints:
- websecure
routes:
- match: Host(`termix.forust.xyz`)
kind: Rule
services:
- name: termix-service
port: 8080
tls:
certResolver: letsencrypt
---
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: termix-local
namespace: termix
spec:
entryPoints:
- websecure
routes:
- match: HostRegexp(`^termix\.(workstation|gigaforust)\.internal$`)
kind: Rule
services:
- name: termix-service
port: 8080