-
Notifications
You must be signed in to change notification settings - Fork 180
/
Copy pathnamespaced-rolebinding.yaml
181 lines (181 loc) · 3.35 KB
/
namespaced-rolebinding.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# Change the namespace to your namespace
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: confluent-operator
namespace: confluent
rules:
# The cluster.confluent.com and operator.confluent.cloud rules only needed when migrating from operator 1.x
- apiGroups:
- cluster.confluent.com
resources:
- zookeeperclusters
- zookeeperclusters/status
- zookeeperclusters/scale
- zookeeperclusters/finalizers
- kafkaclusters
- kafkaclusters/status
- kafkaclusters/scale
- kafkaclusters/finalizers
verbs:
- '*'
- apiGroups:
- operator.confluent.cloud
resources:
- physicalstatefulclusters
- physicalstatefulclusters/scale
- physicalstatefulclusters/status
- physicalstatefulclusters/finalizers
verbs:
- '*'
- apiGroups:
- platform.confluent.io
resources:
- '*'
verbs:
- '*'
- apiGroups:
- policy
resources:
- poddisruptionbudgets
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
# The route.openshift.io rule only needed when deploying on Openshift
- apiGroups:
- route.openshift.io
resources:
- routes
- routes/custom-host
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
- apiGroups:
- apps
resources:
- statefulsets
- statefulsets/scale
- statefulsets/status
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
- apiGroups:
- apps
resources:
- deployments
verbs:
- get
- apiGroups:
- ""
resources:
- configmaps
- events
- persistentvolumeclaims
- persistentvolumes
- secrets
- secrets/finalizers
- pods
- pods/exec # This is only required with CFK 2.0.0, CFK 2.0.1+ does not require this
- services
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
- apiGroups:
- networking.k8s.io
resources:
- ingresses
- ingresses/status
verbs:
- get
- list
- watch
- create
- update
- patch
- delete
- apiGroups:
- ""
resources:
- namespaces
verbs:
- get
---
# Change the service account subject to one that exists in your namespace
# Change the namespace to your namespace
kind: RoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: confluent-operator
namespace: confluent
subjects:
- kind: ServiceAccount
name: confluent-for-kubernetes # customize as required
namespace: confluent # customize as required
roleRef:
kind: Role
name: confluent-operator
apiGroup: rbac.authorization.k8s.io
---
# required only when webhook is enabled
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: confluent-operator-webhook-operator
rules:
- apiGroups:
- admissionregistration.k8s.io
resources:
- validatingwebhookconfigurations
verbs:
- get
- update
- apiGroups:
- ""
resources:
- persistentvolumes
verbs:
- get
- list
- watch
- apiGroups:
- ""
resources:
- namespaces
verbs:
- get
- list
- watch
---
# required only when webhook is enabled
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: confluent-operator-webhook-operator
subjects:
- kind: ServiceAccount
name: confluent-for-kubernetes # customize as required
namespace: confluent # customize as required
roleRef:
kind: ClusterRole
name: confluent-operator-webhook-operator
apiGroup: rbac.authorization.k8s.io