Skip to content

Commit 090b818

Browse files
fix(argo-cd): Add backendRefs group and kind to HTTPRoute (#3536)
* Add backendRefs group and kind to httproute.yaml In cases where the gateway implementation patches these default values (like GKE for instance), adding these here keeps argo from seeing that this resource is out of sync. Signed-off-by: Craig Skinfill <[email protected]> * chore: Bump chart version and add changelog line Signed-off-by: Marco Maurer <[email protected]> --------- Signed-off-by: Craig Skinfill <[email protected]> Signed-off-by: Marco Maurer <[email protected]> Co-authored-by: Marco Maurer (-Kilchhofer) <[email protected]>
1 parent a9ef615 commit 090b818

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

charts/argo-cd/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ appVersion: v3.1.9
33
kubeVersion: ">=1.25.0-0"
44
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
55
name: argo-cd
6-
version: 9.0.4
6+
version: 9.0.5
77
home: https://github.com/argoproj/argo-helm
88
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
99
sources:
@@ -27,4 +27,4 @@ annotations:
2727
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
2828
artifacthub.io/changes: |
2929
- kind: fixed
30-
description: Add checksum to ArgoCD notifications
30+
description: Add backendRefs group and kind to HTTPRoute (prevents OutOfSync issue)

charts/argo-cd/templates/argocd-server/httproute.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ spec:
3636
{{- toYaml . | nindent 8 }}
3737
{{- end }}
3838
backendRefs:
39-
- name: {{ $fullName }}
39+
- group: ''
40+
kind: Service
41+
name: {{ $fullName }}
4042
port: {{ $servicePort }}
4143
weight: 1
4244
{{- end }}

0 commit comments

Comments
 (0)