From 674e9012d67d619b96a6cadb05a71ffa40b21239 Mon Sep 17 00:00:00 2001 From: alexlebens Date: Wed, 21 Aug 2024 19:06:53 -0500 Subject: [PATCH] fix refs --- .../cl01tl/platform/authentik/templates/gateway.yaml | 2 +- .../platform/authentik/templates/http-route.yaml | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/clusters/cl01tl/platform/authentik/templates/gateway.yaml b/clusters/cl01tl/platform/authentik/templates/gateway.yaml index 2cfc5026f..eb3d591a4 100644 --- a/clusters/cl01tl/platform/authentik/templates/gateway.yaml +++ b/clusters/cl01tl/platform/authentik/templates/gateway.yaml @@ -20,4 +20,4 @@ spec: certificateRefs: - kind: Secret name: authentik-tls-gateway - group: authentik + group: '' diff --git a/clusters/cl01tl/platform/authentik/templates/http-route.yaml b/clusters/cl01tl/platform/authentik/templates/http-route.yaml index bd8011b31..a29836e06 100644 --- a/clusters/cl01tl/platform/authentik/templates/http-route.yaml +++ b/clusters/cl01tl/platform/authentik/templates/http-route.yaml @@ -11,7 +11,9 @@ metadata: app.kubernetes.io/part-of: {{ .Release.Name }} spec: parentRefs: - - name: authentik-tls-gateway + - group: gateway.networking.k8s.io + kind: Gateway + name: authentik-tls-gateway hostnames: - auth.alexlebens.net rules: @@ -19,6 +21,9 @@ spec: - path: type: PathPrefix value: / - backendRefs: - - name: authentik-server + - backendRefs: + - group: '' + kind: Service + name: authentik-server port: 80 + weight: 1