fix(httpRoute): avoid Argo CD drift

The following patch avoids a drift in Argo CD. Argo CD detects the missing
`group` of the backendRef.
This commit is contained in:
2026-06-01 22:45:23 +02:00
parent eb907f6b8a
commit f4176fe0c0
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -24,7 +24,8 @@ spec:
{{- end }} {{- end }}
rules: rules:
- backendRefs: - backendRefs:
- kind: Service - group: ''
kind: Service
name: {{ include "athens-proxy.service.name" . }} name: {{ include "athens-proxy.service.name" . }}
namespace: {{ .Release.Namespace }} namespace: {{ .Release.Namespace }}
port: {{ .Values.service.port }} port: {{ .Values.service.port }}
+1
View File
@@ -92,6 +92,7 @@ tests:
- contains: - contains:
path: spec.rules[0].backendRefs path: spec.rules[0].backendRefs
content: content:
group: ''
kind: Service kind: Service
name: athens-proxy-unittest name: athens-proxy-unittest
namespace: testing namespace: testing