Skip to content

Commit

Permalink
Merge pull request #267 from technoplayer/master
Browse files Browse the repository at this point in the history
In Helm chart, replaces * verbs with specific verbs.
  • Loading branch information
ese authored Aug 27, 2020
2 parents 8adc0a7 + 6dd4ddd commit aae8c19
Showing 1 changed file with 35 additions and 5 deletions.
40 changes: 35 additions & 5 deletions charts/redisoperator/templates/rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,25 @@ rules:
- redisfailovers
- redisfailovers/finalizers
verbs:
- "*"
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- apiextensions.k8s.io
resources:
- customresourcedefinitions
verbs:
- "*"
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- ""
resources:
Expand All @@ -37,7 +49,13 @@ rules:
- events
- configmaps
verbs:
- "*"
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- ""
resources:
Expand All @@ -50,13 +68,25 @@ rules:
- deployments
- statefulsets
verbs:
- "*"
- create
- delete
- get
- list
- patch
- update
- watch
- apiGroups:
- policy
resources:
- poddisruptionbudgets
verbs:
- "*"
- create
- delete
- get
- list
- patch
- update
- watch
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/{{ .Values.rbac.apiVersion }}
Expand Down

0 comments on commit aae8c19

Please sign in to comment.