Files
homelab/termix/k8s/ingress.yaml
T
forust 0803f3efff
Deploy to Server / deploy (push) Has been cancelled
chore(k8s): returned to Host || Host standart instead of regexp.
Yaml lint (yamllint)
2026-06-18 21:02:40 +02:00

34 lines
711 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
middlewares:
- name: "crowdsec-crowdsec-bouncer@kubernetescrd"
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: Host(`termix.workstation.internal`) || Host(`termix.gigaforust.internal`)
kind: Rule
services:
- name: termix-service
port: 8080