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:
parent
445b2757f5
commit
6f8aea3750
2 changed files with 5 additions and 4 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||
appVersion: v2.4.2
|
||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||
name: argo-cd
|
||||
version: 4.9.6
|
||||
version: 4.9.7
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||
keywords:
|
||||
|
@ -21,4 +21,5 @@ dependencies:
|
|||
condition: redis-ha.enabled
|
||||
annotations:
|
||||
artifacthub.io/changes: |
|
||||
- "[Added]: Support clusterResourceBlacklist"
|
||||
- "[Fixed]: fix ArgoCD notifications config map name in role"
|
||||
- "[Fixed]: fix ArgoCD notifications secret name in role"
|
||||
|
|
|
@ -28,7 +28,7 @@ rules:
|
|||
- apiGroups:
|
||||
- ""
|
||||
resourceNames:
|
||||
- {{ template "argo-cd.notifications.fullname" . }}-cm
|
||||
- {{ include "argo-cd.notifications.configMapName" . }}
|
||||
resources:
|
||||
- configmaps
|
||||
verbs:
|
||||
|
@ -36,7 +36,7 @@ rules:
|
|||
- apiGroups:
|
||||
- ""
|
||||
resourceNames:
|
||||
- {{ template "argo-cd.notifications.fullname" . }}-secret
|
||||
- {{ include "argo-cd.notifications.secretName" . }}
|
||||
resources:
|
||||
- secrets
|
||||
verbs:
|
||||
|
|
Loading…
Reference in a new issue