feat(argo-cd): Set aggregate roles only for using resources, with argocdextensions also (#1679)
Signed-off-by: Hyeonmin Park <hyeonmin.park@kennysoft.kr> Signed-off-by: Hyeonmin Park <hyeonmin.park@kennysoft.kr> Co-authored-by: Petr Drastil <petr.drastil@gmail.com> Co-authored-by: Aikawa <yu.croco@gmail.com>
This commit is contained in:
parent
216a52d341
commit
34a33c967f
3 changed files with 20 additions and 3 deletions
|
@ -3,7 +3,7 @@ appVersion: v2.5.3
|
|||
kubeVersion: ">=1.22.0-0"
|
||||
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
|
||||
name: argo-cd
|
||||
version: 5.16.0
|
||||
version: 5.16.1
|
||||
home: https://github.com/argoproj/argo-helm
|
||||
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
|
||||
sources:
|
||||
|
@ -23,4 +23,6 @@ dependencies:
|
|||
condition: redis-ha.enabled
|
||||
annotations:
|
||||
artifacthub.io/changes: |
|
||||
- "[Added]: Ability to annotate Deployment and Statefulset objects for all components"
|
||||
- "[Fixed]: Set aggregate roles only for using resources"
|
||||
- "[Added]: Add argocdextensions to aggregate roles"
|
||||
- "[Fixed]: Fix typo of notification.bots.slack.image in values"
|
||||
|
|
|
@ -11,7 +11,12 @@ rules:
|
|||
- argoproj.io
|
||||
resources:
|
||||
- applications
|
||||
{{- if .Values.applicationSet.enabled }}
|
||||
- applicationsets
|
||||
{{- end }}
|
||||
{{- if .Values.server.extensions.enabled }}
|
||||
- argocdextensions
|
||||
{{- end }}
|
||||
- appprojects
|
||||
verbs:
|
||||
- get
|
||||
|
@ -31,7 +36,12 @@ rules:
|
|||
- argoproj.io
|
||||
resources:
|
||||
- applications
|
||||
{{- if .Values.applicationSet.enabled }}
|
||||
- applicationsets
|
||||
{{- end }}
|
||||
{{- if .Values.server.extensions.enabled }}
|
||||
- argocdextensions
|
||||
{{- end }}
|
||||
- appprojects
|
||||
verbs:
|
||||
- create
|
||||
|
@ -56,7 +66,12 @@ rules:
|
|||
- argoproj.io
|
||||
resources:
|
||||
- applications
|
||||
{{- if .Values.applicationSet.enabled }}
|
||||
- applicationsets
|
||||
{{- end }}
|
||||
{{- if .Values.server.extensions.enabled }}
|
||||
- argocdextensions
|
||||
{{- end }}
|
||||
- appprojects
|
||||
verbs:
|
||||
- create
|
||||
|
|
|
@ -2890,7 +2890,7 @@ notifications:
|
|||
## Has higher precedence over `notifications.bots.slack.pdb.minAvailable`
|
||||
maxUnavailable: ""
|
||||
|
||||
## Slack bot imabe
|
||||
## Slack bot image
|
||||
image:
|
||||
# -- Repository to use for the Slack bot
|
||||
# @default -- `""` (defaults to global.image.repository)
|
||||
|
|
Loading…
Reference in a new issue