diff --git a/charts/argo-cd/Chart.yaml b/charts/argo-cd/Chart.yaml index c0b4bc7e..5a8c62e5 100644 --- a/charts/argo-cd/Chart.yaml +++ b/charts/argo-cd/Chart.yaml @@ -3,7 +3,7 @@ appVersion: v2.11-2024.7.3-c0941bcb4 kubeVersion: ">=1.23.0-0" description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. name: argo-cd -version: 6.11.1-3-cap-2.11-2024.7.3-c0941bcb4 +version: 6.11.1-4-cap-2.11-2024.7.3-c0941bcb4 home: https://github.com/argoproj/argo-helm icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png sources: @@ -28,3 +28,5 @@ annotations: artifacthub.io/changes: | - kind: changed description: Upgrade argo-cd to v2.11-2024.7.3-c0941bcb4 with fix - report application event from queue instead of requesting actual state again which potentially means doesn't get same data as in original event + - kind: fixed + description: Event reporter selector labeles diff --git a/charts/argo-cd/ci/codefresh.yaml b/charts/argo-cd/ci/codefresh.yaml new file mode 100644 index 00000000..218a0f41 --- /dev/null +++ b/charts/argo-cd/ci/codefresh.yaml @@ -0,0 +1,7 @@ +# Values file to debug templates that rely on Codefresh values +global: + codefresh: + tls: + caCerts: + secret: + create: false diff --git a/charts/argo-cd/templates/event-reporter/servicemonitor.yaml b/charts/argo-cd/templates/event-reporter/servicemonitor.yaml index 79f7e2e3..2f4de038 100644 --- a/charts/argo-cd/templates/event-reporter/servicemonitor.yaml +++ b/charts/argo-cd/templates/event-reporter/servicemonitor.yaml @@ -43,5 +43,5 @@ spec: - {{ .Release.Namespace }} selector: matchLabels: - {{- include "argo-cd.selectorLabels" (dict "context" . "component" .Values.eventReporter.name "name" "metrics") | nindent 6 }} + {{- include "argo-cd.selectorLabels" (dict "context" . "component" .Values.eventReporter.name "name" (printf "%s-metrics" .Values.eventReporter.name)) | nindent 6 }} {{- end }}