fix(argo-cd): fix argo-cd notifications resource names in role (#1340)

* fix(argo-cd): fix argo-cd notifications resource names in role

Signed-off-by: Gabriele Diener <gabriele.diener@klarna.com>

* fix(argo-cd): fix chart version

Signed-off-by: Gabriele Diener <gabriele.diener@klarna.com>
This commit is contained in:
Gabriele 2022-06-23 16:43:30 +02:00 committed by GitHub
parent 445b2757f5
commit 6f8aea3750
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 4 deletions

View file

@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v2.4.2 appVersion: v2.4.2
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd name: argo-cd
version: 4.9.6 version: 4.9.7
home: https://github.com/argoproj/argo-helm home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
keywords: keywords:
@ -21,4 +21,5 @@ dependencies:
condition: redis-ha.enabled condition: redis-ha.enabled
annotations: annotations:
artifacthub.io/changes: | artifacthub.io/changes: |
- "[Added]: Support clusterResourceBlacklist" - "[Fixed]: fix ArgoCD notifications config map name in role"
- "[Fixed]: fix ArgoCD notifications secret name in role"

View file

@ -28,7 +28,7 @@ rules:
- apiGroups: - apiGroups:
- "" - ""
resourceNames: resourceNames:
- {{ template "argo-cd.notifications.fullname" . }}-cm - {{ include "argo-cd.notifications.configMapName" . }}
resources: resources:
- configmaps - configmaps
verbs: verbs:
@ -36,7 +36,7 @@ rules:
- apiGroups: - apiGroups:
- "" - ""
resourceNames: resourceNames:
- {{ template "argo-cd.notifications.fullname" . }}-secret - {{ include "argo-cd.notifications.secretName" . }}
resources: resources:
- secrets - secrets
verbs: verbs: