Files
tcb_devportal/manifest/helm/templates/httproute.yaml
duynguyen c90a36a54f
Some checks failed
homelab-k8s-services/tcb_devportal/pipeline/head There was a failure building this commit
feat: initial commit — tcb_devportal Next.js app
Includes Helm chart (tcb-devportal), Jenkinsfile with homelab CI pipeline,
and Next.js app source.
2026-05-10 14:49:10 +07:00

20 lines
423 B
YAML

apiVersion: gateway.networking.k8s.io/v1
kind: HTTPRoute
metadata:
name: {{ .Chart.Name }}
namespace: {{ .Release.Namespace }}
spec:
parentRefs:
- name: envoy-gateway
namespace: envoy-gateway-system
hostnames:
- "tcb-devportal.fireflylab.local"
rules:
- matches:
- path:
type: PathPrefix
value: /
backendRefs:
- name: {{ .Chart.Name }}
port: {{ .Values.service.port }}