File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
charts/logging-operator/templates Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 1+ {{- if .Values.rbac.enabled }}
2+ ---
3+ apiVersion : rbac.authorization.k8s.io/v1
4+ kind : ClusterRole
5+ metadata :
6+ name : {{ template "logging-operator.fullname" . }}-edit
7+ labels :
8+ rbac.authorization.k8s.io/aggregate-to-admin : " true"
9+ rbac.authorization.k8s.io/aggregate-to-edit : " true"
10+ rules :
11+ - apiGroups :
12+ - logging.banzaicloud.io
13+ resources :
14+ - flows
15+ - outputs
16+ verbs :
17+ - create
18+ - delete
19+ - deletecollection
20+ - get
21+ - list
22+ - patch
23+ - update
24+ - watch
25+ - apiGroups :
26+ - logging.banzaicloud.io
27+ resources :
28+ - syslogngflows
29+ - syslogngoutputs
30+ verbs :
31+ - create
32+ - delete
33+ - deletecollection
34+ - get
35+ - list
36+ - patch
37+ - update
38+ - watch
39+ {{- end }}
You can’t perform that action at this time.
0 commit comments