From 0fc24ee3b3673e26d0cf3c47d2959a1e479076f7 Mon Sep 17 00:00:00 2001 From: alexlebens Date: Thu, 22 Aug 2024 13:38:30 -0500 Subject: [PATCH] fix route --- .../site-profile/templates/http-route.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/clusters/cl01tl/applications/site-profile/templates/http-route.yaml b/clusters/cl01tl/applications/site-profile/templates/http-route.yaml index c86ef7578..5cbea372a 100644 --- a/clusters/cl01tl/applications/site-profile/templates/http-route.yaml +++ b/clusters/cl01tl/applications/site-profile/templates/http-route.yaml @@ -11,15 +11,20 @@ metadata: app.kubernetes.io/part-of: {{ .Release.Name }} spec: parentRefs: - - name: cilium-gateway + - group: gateway.networking.k8s.io + kind: Gateway + name: cilium-gateway namespace: cilium hostnames: - - "site.alexlebens.net" + - site.alexlebens.net rules: - matches: - path: type: PathPrefix value: / backendRefs: - - name: my-service + - group: '' + kind: Service + name: site-profile port: 80 + weight: 1