forked from wikimedia/mediawiki-containers
-
Notifications
You must be signed in to change notification settings - Fork 7
/
mediawiki-dev.yaml
428 lines (404 loc) · 8.94 KB
/
mediawiki-dev.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
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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
# BEGIN MySQL
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: mysql-deploy
spec:
replicas: 1
template:
metadata:
labels:
service_name: mysql
spec:
containers:
- name: mysql
image: mariadb
env:
- name: MYSQL_ROOT_PASSWORD
value: password
volumeMounts:
- name: mysql-storage
mountPath: /var/lib/mysql
volumes:
- name: mysql-storage
hostPath:
path: /var/lib/mediawiki-containers/mysql
---
apiVersion: v1
kind: Service
metadata:
name: mysql-svc
spec:
type: ClusterIP
ports:
- port: 3306
selector:
service_name: mysql
# END MySQL
---
# BEGIN MediaWiki
apiVersion: v1
kind: ConfigMap
metadata:
name: mediawiki-conf-1
data:
CustomSettings.php: |
<?php
$wgServer = '//' . $_SERVER['HTTP_HOST'];
$wgArticlePath = '/wiki/$1';
$wgScriptPath = '/w';
# Enable database caching
$wgMainCacheType = CACHE_DB;
/**
* VisualEditor, Citoid and co
*/
wfLoadExtension( 'VisualEditor' );
wfLoadExtension( 'ParserFunctions' );
wfLoadExtension( 'TemplateData' );
wfLoadExtension( 'Cite' );
wfLoadExtension( 'Citoid' );
$wgDefaultUserOptions['visualeditor-enable'] = 1;
$wgHiddenPrefs[] = 'visualeditor-enable';
$wgVirtualRestConfig['modules']['restbase'] = array(
'url' => 'http://restbase-svc:7231',
'domain' => 'localhost',
'forwardCookies' => true,
'parsoidCompat' => false
);
/**
* ChangeProp and EventBus
*/
wfLoadExtension( 'EventBus' );
$wgEventServiceUrl = "http://eventlogging-service-svc:8085/v1/events";
/**
* Math
*/
wfLoadExtension( 'Math' );
$wgMathValidModes[] = 'mathml';
$wgDefaultUserOptions['math'] = 'mathml';
$wgMathFullRestbaseURL = '/api/rest_';
#unset($GLOBALS['wgMathMathMLUrl']);
/**
* Mobile Content Service
*/
wfLoadExtension( 'MobileFrontend' );
wfLoadExtension( 'TextExtracts' );
wfLoadExtension( 'PageImages' );
---
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: mediawiki-deploy
spec:
replicas: 1
template:
metadata:
labels:
service_name: mediawiki
spec:
containers:
- name: mediawiki
image: wikimedia/mediawiki:1.30.0-wmf4
ports:
- containerPort: 80
env:
- name: MEDIAWIKI_SITE_SERVER
value: 'configured-in-CustomSettings.php'
- name: MEDIAWIKI_SITE_NAME
value: MediaWiki
- name: MEDIAWIKI_SITE_LANG
value: en
- name: MEDIAWIKI_ADMIN_USER
value: admin
- name: MEDIAWIKI_ADMIN_PASS
value: admin
- name: MEDIAWIKI_UPDATE
value: 'true'
- name: MEDIAWIKI_DB_TYPE
value: mysql
- name: MEDIAWIKI_DB_USER
value: root
- name: MEDIAWIKI_DB_PASSWORD
value: password
- name: MEDIAWIKI_DB_HOST
value: mysql-svc
- name: MEDIAWIKI_RESTBASE_URL
value: http://restbase-svc:7231/localhost/v1
volumeMounts:
- name: mediawiki-storage
mountPath: /data
- name: mediawiki-conf
mountPath: /conf
volumes:
- name: mediawiki-storage
hostPath:
path: /var/lib/mediawiki-containers/mediawiki
- name: mediawiki-conf
configMap:
name: mediawiki-conf-1
---
apiVersion: v1
kind: Service
metadata:
name: mediawiki-svc
spec:
type: NodePort
ports:
- port: 80
protocol: TCP
targetPort: 80
selector:
service_name: mediawiki
# END MediaWiki
---
# BEGIN RESTBase
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: restbase-deploy
spec:
replicas: 1
template:
metadata:
labels:
service_name: restbase
spec:
containers:
- name: mediawiki-node-services
image: wikimedia/mediawiki-node-services:0.2.3
env:
- name: MEDIAWIKI_API_URL
value: http://mediawiki-svc/api.php
- name: MATHOID_HOST_PORT
value: http://mathoid-svc:10044
- name: MOBILEAPPS_URI
value: http://mobileapps-svc:8888
- name: CITOID_URI
value: http://citoid-svc:1970
volumeMounts:
- name: node-services-storage
mountPath: /data
volumes:
- name: node-services-storage
hostPath:
path: /var/lib/mediawiki-containers/node-services
---
apiVersion: v1
kind: Service
metadata:
name: restbase-svc
spec:
type: ClusterIP
ports:
- port: 7231
protocol: TCP
selector:
service_name: restbase
# END RESTBase
---
# BEGIN Mathoid
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: mathoid-deploy
spec:
replicas: 1
template:
metadata:
labels:
service_name: mathoid
spec:
containers:
- name: mathoid
image: wikimedia/mathoid:24b660f09
ports:
- containerPort: 10044
---
apiVersion: v1
kind: Service
metadata:
name: mathoid-svc
spec:
type: ClusterIP
ports:
- port: 10044
protocol: TCP
selector:
service_name: mathoid
# END Mathoid
---
# BEGIN Citoid
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: citoid-deploy
spec:
replicas: 1
template:
metadata:
labels:
service_name: citoid
spec:
containers:
- name: citoid
image: wikimedia/citoid:f321c30
ports:
- containerPort: 1970
- name: zotero
image: wikimedia/zotero:f051fe7
ports:
- containerPort: 1969
---
apiVersion: v1
kind: Service
metadata:
name: citoid-svc
spec:
type: ClusterIP
ports:
- port: 1970
protocol: TCP
selector:
service_name: citoid
# END Citoid
---
# BEGIN Mobile Content Service
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: mobileapps-deploy
spec:
replicas: 1
template:
metadata:
labels:
service_name: mobileapps
spec:
containers:
- name: mobileapps
image: wikimedia/mobile-content-service:32202ba
env:
- name: MWAPI_URI
value: http://mediawiki-svc/api.php
- name: RESTBASE_URI
value: http://restbase-svc:7231/localhost/v1/{+path}
ports:
- containerPort: 8888
---
apiVersion: v1
kind: Service
metadata:
name: mobileapps-svc
spec:
type: ClusterIP
ports:
- port: 8888
protocol: TCP
selector:
service_name: mobileapps
# END Mobile Content Service
---
# Begin ChangeProp
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: kafka-deploy
spec:
replicas: 1
template:
metadata:
labels:
service_name: kafka
spec:
containers:
- name: kafka
image: wurstmeister/kafka:0.9.0.1-1
ports:
- containerPort: 9092
env:
- name: KAFKA_BROKER_ID
value: '1'
- name: KAFKA_ADVERTISED_HOST_NAME
valueFrom:
fieldRef:
fieldPath: status.podIP
- name: KAFKA_PORT
value: '9092'
- name: KAFKA_ADVERTISED_PORT
value: '9092'
- name: KAFKA_ZOOKEEPER_CONNECT
value: localhost:2181
- name: KAFKA_HEAP_OPTS
value: "-Xmx200m -Xms200m"
- name: zookeeper
image: wurstmeister/zookeeper
ports:
- containerPort: 2181
env:
- name: ZOOKEEPER_HEAP_OPTS
value: "-Xmx50m -Xms50m"
---
apiVersion: v1
kind: Service
metadata:
name: kafka-svc
spec:
type: ClusterIP
ports:
- name: kafka-port
port: 9092
selector:
service_name: kafka
---
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: eventlogging-service-deploy
spec:
replicas: 1
template:
metadata:
labels:
service_name: eventlogging-service
spec:
containers:
- name: eventlogging-service
image: wikimedia/eventlogging-service
args:
- kafka:///kafka-svc:9092?async=False&sync_timeout=10.0&topic=eqiad.{meta[topic]}&api_version=0.9
ports:
- containerPort: 8085
---
apiVersion: v1
kind: Service
metadata:
name: eventlogging-service-svc
spec:
type: ClusterIP
ports:
- port: 8085
selector:
service_name: eventlogging-service
---
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: change-propagation-deploy
spec:
replicas: 1
template:
metadata:
labels:
service_name: change-propagation
spec:
containers:
- name: change-propagation
image: wikimedia/change-propagation
env:
- name: MEDIAWIKI_URL
value: http://mediawiki-svc
- name: RESTBASE_URL
value: http://restbase-svc:7231
- name: KAFKA_BROKER_LIST
value: kafka-svc:9092
# End Change-Prop