-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoperator-namespaced.yaml
More file actions
367 lines (344 loc) · 8.56 KB
/
Copy pathoperator-namespaced.yaml
File metadata and controls
367 lines (344 loc) · 8.56 KB
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
# This YAML file lists all *namespaced* objects that the operator
# needs to do its job when running inside the cluster.
#
# 💡 The namespace is always `wordpress-test`. Substitute it (as the
# OLM controller does) if you want to run the operator in another
# namespace.
#
# See also `opeator-non-namespaced.yaml`
---
# ServiceAccount/wp-operator
apiVersion: v1
kind: ServiceAccount
metadata:
name: wp-operator
namespace: wordpress-test
automountServiceAccountToken: false
---
# Role/wp-operator
#
# ⚠ Each time you add permissions here, you need to also update the
# OLM controller's permissions (in the `ClusterRoleBinding` object in
# olm/controller-deployment-and-rbac.yaml); see comments there to
# explain why.
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: wp-operator
namespace: wordpress-test
rules:
- apiGroups: ['wordpress.epfl.ch']
resources:
- wordpresssites
- wordpresssites/status
verbs: ['*']
- apiGroups: ['networking.k8s.io']
resources:
- ingresses
verbs: ['*']
- apiGroups: ['']
resources:
- events
verbs: ['create', 'patch']
- apiGroups: ['']
resources:
- pods
- pods/status
verbs: ['get', 'list', 'watch', 'create', 'delete']
- apiGroups: ['']
resources: ['services']
verbs: ['get', 'list', 'watch']
- apiGroups: ['k8s.mariadb.com']
resources:
- backups
- connections
- databases
- grants
- mariadbs
- sqljobs
- users
- restores
verbs: ['*']
- apiGroups: ['']
resources:
- secrets
verbs: ['*']
- apiGroups: ['']
resources: ['configmaps']
resourceNames: ['wp-operator-lock']
verbs: ['*']
- apiGroups: ['']
resources: ['configmaps']
verbs: ["create"]
- apiGroups: ['route.openshift.io']
resources: ['routes', "routes/custom-host"]
verbs: ["*"]
---
# RoleBinding/wp-operator
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: wp-operator
namespace: wordpress-test
subjects:
- kind: ServiceAccount
name: wp-operator
namespace: wordpress-test
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: wp-operator
---
# Deployment/wp-operator
apiVersion: apps/v1
kind: Deployment
metadata:
name: wp-operator
namespace: wordpress-test
spec:
replicas: 1
selector:
matchLabels:
app: wp-operator
strategy:
type: RollingUpdate
template:
metadata:
labels:
app: wp-operator
spec:
serviceAccountName: wp-operator
automountServiceAccountToken: true
imagePullSecrets:
- name: wp-operator-pull
containers:
- name: wp-operator
image: quay-its.epfl.ch/svc0041/wp-operator:latest
args:
- --namespace=wordpress-test
- --
- --wp-dir=/wp
- --secret-dir=/wp-secrets
- --media-restore-to-pvc=wordpress-data
- --image-for-restore=quay-its.epfl.ch/svc0041/rsync
- --image-pull-secret=svc0041-svc0041-puller-pull-secret
envFrom:
- configMapRef:
name: wp-operator-config
- secretRef:
name: wp-operator-supplemental-environment
optional: true
volumeMounts:
- name: wp-data
mountPath: /wp-data/
- name: wp-secrets
mountPath: /wp-secrets
resources:
limits:
memory: 1Gi
requests:
cpu: 300m
memory: 1Gi
restartPolicy: Always
volumes:
- name: wp-data
persistentVolumeClaim:
claimName: wordpress-data
- name: wp-secrets
secret:
secretName: wp-plugin-secrets
# Additional RBAC for the WordPress Deployment starts here
# We have no control over the fact that the `nginx-ingress-controller`
# (that we use unmodified `FROM rancher/nginx-ingress-controller`)
# wants this authority — And no other way to provide these permissions,
# than to piggy-back them with our operator's OLM controller.
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: wp-cron
namespace: wordpress-test
---
# Role/wp-cron
#
# ⚠ Each time you add permissions here, you need to also update the
# OLM controller's permissions (in the `ClusterRoleBinding` object in
# olm/controller-deployment-and-rbac.yaml); see comments there to
# explain why.
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: wp-cron
namespace: wordpress-test
rules:
- apiGroups: ['wordpress.epfl.ch']
resources:
- wordpresssites
verbs: ['get', 'list', 'watch']
- apiGroups: ['wordpress.epfl.ch']
resources: [ "wordpresssites/status" ]
verbs: [ "patch" ]
- apiGroups: ['networking.k8s.io']
resources:
- ingresses
verbs: ['get', 'list', 'watch']
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: wp-cron
namespace: wordpress-test
subjects:
- kind: ServiceAccount
name: wp-cron
namespace: wordpress-test
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: wp-cron
---
# ServiceAccount/wp-nginx
apiVersion: v1
kind: ServiceAccount
metadata:
name: wp-nginx
namespace: wordpress-test
automountServiceAccountToken: false
---
# Role/wp-nginx
#
# ⚠ Each time you add permissions here, you need to also update the
# OLM controller's permissions (in the `ClusterRoleBinding` object in
# olm/controller-deployment-and-rbac.yaml); see comments there to
# explain why.
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: wp-nginx
namespace: wordpress-test
rules:
# Required for `--namespace` flag: the nginx controller wants to read its own namespace.
- apiGroups: ['']
resources:
- namespaces
verbs: ['get']
- apiGroups: ['networking.k8s.io']
resources:
- ingresses
verbs: ['get', 'list', 'watch']
- apiGroups: ['networking.k8s.io']
resources:
- ingresses/status
verbs: ['update']
- apiGroups: ['']
resources:
- events
verbs: ['create', 'patch']
# We have no control over `nginx-ingress-controller` throwing a tantrum
# if it doesn't have these permissions, even though it arguably doesn't
# need them in our use case:
- apiGroups: ['']
resources:
- pods
- services
verbs: ['get', 'list', 'watch']
- apiGroups: ['discovery.k8s.io']
resources:
- endpointslices
verbs: ['get', 'list', 'watch']
- apiGroups: ['']
resources:
- configmaps
resourceNames:
- wp-nginx
verbs: ['get', 'watch']
---
# RoleBinding/wp-nginx
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: wp-nginx
namespace: wordpress-test
subjects:
- kind: ServiceAccount
name: wp-nginx
namespace: wordpress-test
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: wp-nginx
---
# ClusterRoleBinding/wp-nginx
# 💡 The corresponding ClusterRole is in `operator-non-namespaced.yml`.
# The reason this one is quote-unquote “namespaced”, is that we need to
# have another one for every namespace. The controller's full text substitution
# logic achieves that.
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: wp-nginx--wordpress-test
subjects:
- kind: ServiceAccount
name: wp-nginx
namespace: wordpress-test
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: wp-nginx
---
# ClusterRoleBinding/wp-operator
# See comment above.
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: wp-operator--wordpress-test
subjects:
- kind: ServiceAccount
name: wp-operator
namespace: wordpress-test
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: wp-operator
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: wp-fleet
namespace: wordpress-test
---
# Role/wp-fleet
#
# ⚠ Each time you add permissions here, you need to also update the
# OLM controller's permissions (in the `ClusterRoleBinding` object in
# olm/controller-deployment-and-rbac.yaml); see comments there to
# explain why.
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: wp-fleet
namespace: wordpress-test
rules:
- apiGroups: ['wordpress.epfl.ch']
resources:
- wordpresssites
verbs: ['get', 'list', 'watch']
- apiGroups: ['k8s.mariadb.com']
resources:
- backups
- databases
verbs: ['get', 'list', 'watch']
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: wp-fleet
namespace: wordpress-test
subjects:
- kind: ServiceAccount
name: wp-fleet
namespace: wordpress-test
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: wp-fleet