Files
infrastructure/clusters/cl01tl/applications/channels/templates/http-route.yaml
Alex Lebens f949e7f436
All checks were successful
lint-test-docker / docker-lint (push) Successful in 10s
lint-test-helm / helm-lint (push) Successful in 9s
renovate / renovate (push) Successful in 1m3s
add channels
2025-10-20 20:55:49 -05:00

29 lines
682 B
YAML

apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: http-route-channels
namespace: {{ .Release.Namespace }}
labels:
app.kubernetes.io/name: http-route-channels
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/part-of: {{ .Release.Name }}
spec:
parentRefs:
- group: gateway.networking.k8s.io
kind: Gateway
name: traefik-gateway
namespace: traefik
hostnames:
- channels.alexlebens.net
rules:
- matches:
- path:
type: PathPrefix
value: /
backendRefs:
- group: ''
kind: Service
name: channels
port: 80
weight: 100