From cd4076b5609ba5a9a0b86f563d940599b115d88a Mon Sep 17 00:00:00 2001 From: somaz Date: Fri, 3 Jul 2026 16:33:17 +0900 Subject: [PATCH] fix(nextcloud): add explicit group/kind to HTTPRoute backendRefs to prevent Argo CD drift Signed-off-by: somaz --- charts/nextcloud/Chart.yaml | 2 +- charts/nextcloud/templates/route.yaml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/charts/nextcloud/Chart.yaml b/charts/nextcloud/Chart.yaml index 51a78c68..7ca74e21 100644 --- a/charts/nextcloud/Chart.yaml +++ b/charts/nextcloud/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: nextcloud -version: 9.2.0 +version: 9.2.1 # renovate: image=docker.io/library/nextcloud appVersion: 34.0.1 description: A file sharing server that puts the control and security of your own data back into your hands. diff --git a/charts/nextcloud/templates/route.yaml b/charts/nextcloud/templates/route.yaml index 2ead705d..54df7319 100644 --- a/charts/nextcloud/templates/route.yaml +++ b/charts/nextcloud/templates/route.yaml @@ -27,7 +27,9 @@ spec: rules: {{- range .Values.httpRoute.rules }} - backendRefs: - - name: {{ $fullName }} + - group: "" + kind: Service + name: {{ $fullName }} port: {{ $svcPort }} weight: 1 {{- with .matches }}