fix servicemonitor selectors (#85)

This commit is contained in:
ilia-medvedev-codefresh 2024-07-09 17:28:50 +03:00 committed by GitHub
parent 849fdae701
commit fbc6b8841f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 11 additions and 2 deletions

View file

@ -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

View file

@ -0,0 +1,7 @@
# Values file to debug templates that rely on Codefresh values
global:
codefresh:
tls:
caCerts:
secret:
create: false

View file

@ -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 }}