Skip to content

Commit

Permalink
fix rbac (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
fraliv13 authored Dec 2, 2024
1 parent 301ef77 commit ce76471
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion helm/templates/rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ rules:
verbs: [ "*" ]
- apiGroups: [""]
resources: [ "configmaps" ]
verbs: [ "*" ]
verbs: [ "*" ]
- apiGroups: [""]
resources: [ "secrets" ]
verbs: [ "*" ]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
Expand Down Expand Up @@ -95,6 +98,9 @@ rules:
- apiGroups: [""]
resources: [ "configmaps" ]
verbs: [ "*" ]
- apiGroups: [""]
resources: [ "secrets" ]
verbs: [ "*" ]
- apiGroups: ["secrets-store.csi.x-k8s.io"]
resources: [ "*" ]
verbs: [ "*" ]
Expand Down

0 comments on commit ce76471

Please sign in to comment.