fix(argo-cd): Fix argo-cd role for new permissions model (#8)
This commit is contained in:
parent
8b85c1e286
commit
b4089ab785
2 changed files with 12 additions and 7 deletions
|
@ -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.4
|
version: 4.2.5
|
||||||
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:
|
||||||
|
@ -19,4 +19,4 @@ dependencies:
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Fixed]: Add missing NetworkPolicy for ApplicationSet and Notifications"
|
- "[Fixed]: Add missing NetworkPolicy for ApplicationSet and Notifications"
|
||||||
category: CI/CD
|
category: CI/CD
|
|
@ -3,17 +3,22 @@ kind: Role
|
||||||
metadata:
|
metadata:
|
||||||
name: argocd-full-access
|
name: argocd-full-access
|
||||||
rules:
|
rules:
|
||||||
|
- apiGroups:
|
||||||
|
- ""
|
||||||
|
resources:
|
||||||
|
- pods
|
||||||
|
- pods/log
|
||||||
|
- pods/portforward
|
||||||
|
- pods/exec
|
||||||
|
- pods/attach
|
||||||
|
verbs:
|
||||||
|
- "*"
|
||||||
- apiGroups:
|
- apiGroups:
|
||||||
- ""
|
- ""
|
||||||
- extensions
|
- extensions
|
||||||
- apps
|
- apps
|
||||||
- networking.k8s.io
|
- networking.k8s.io
|
||||||
resources:
|
resources:
|
||||||
- pods
|
|
||||||
- pods/log
|
|
||||||
- pods/portforward
|
|
||||||
- pods/exec
|
|
||||||
- pods/attach
|
|
||||||
- configmaps
|
- configmaps
|
||||||
- endpoints
|
- endpoints
|
||||||
- events
|
- events
|
||||||
|
|
Loading…
Reference in a new issue