Skip to content

Commit

Permalink
fix(argo-cd): Add missing permission for Dynamic Cluster Distribution (
Browse files Browse the repository at this point in the history
  • Loading branch information
yu-croco authored Jun 9, 2024
1 parent 3dd3e1a commit 377332f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
6 changes: 3 additions & 3 deletions charts/argo-cd/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ appVersion: v2.11.3
kubeVersion: ">=1.23.0-0"
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd
version: 7.1.2
version: 7.1.3
home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
sources:
Expand All @@ -26,5 +26,5 @@ annotations:
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
artifacthub.io/changes: |
- kind: changed
description: Bump argo-cd to v2.11.3
- kind: fixed
description: Add missing permission for Dynamic Cluster Distribution
14 changes: 14 additions & 0 deletions charts/argo-cd/templates/argocd-application-controller/role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,17 @@ rules:
- get
- list
- watch
{{- if and (not .Values.createClusterRoles) .Values.controller.dynamicClusterDistribution }}
- apiGroups:
- ""
resources:
- configmaps
resourceNames:
- argocd-app-controller-shard-cm
verbs:
- get
- list
- watch
- create
- update
{{- end }}

0 comments on commit 377332f

Please sign in to comment.