fix(argo-cd): Fix role grouping for secrets resource (#9)

This commit is contained in:
Brandon J 2022-08-03 17:22:32 -06:00 committed by GitHub
parent b4089ab785
commit ce048ecfb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 2 deletions

View file

@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v2.3.1 appVersion: v2.3.1
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.2.5 version: 4.7.1
home: https://github.com/coreweave/argo-helm home: https://github.com/coreweave/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:

View file

@ -3,6 +3,12 @@ kind: Role
metadata: metadata:
name: argocd-full-access name: argocd-full-access
rules: rules:
- apiGroups:
- ""
resources:
- secrets
verbs:
- "*"
- apiGroups: - apiGroups:
- "" - ""
resources: resources:
@ -27,7 +33,6 @@ rules:
- persistentvolumeclaims/finalizers - persistentvolumeclaims/finalizers
- podtemplates - podtemplates
- replicationcontrollers - replicationcontrollers
- secrets
- services - services
- controllerrevisions - controllerrevisions
- deployments - deployments