blob: 87eefb1d508b41e4d6585f6e0686d488d2823e7d [file] [log] [blame]
Serge Bazanski60076c72020-11-03 19:17:25 +01001# Matrix server (synapse).
Piotr Dobrowolskia2226912019-05-14 18:49:29 +02002# This needs a secret provisioned, create with:
Serge Bazanski60076c72020-11-03 19:17:25 +01003# ns=matrix
4# kubectl -n $ns create secret generic synapse --from-literal=postgres_password=$(pwgen 24 1) --from-literal=macaroon_secret_key=$(pwgen 32 1) --from-literal=registration_shared_secret=$(pwgen 32 1)
5# kubectl -n $ns create secret generic oauth2-cas-proxy --from-literal=oauth2_secret=...
Serge Bazanskide627512020-08-24 21:17:55 +00006#
Serge Bazanski21a96162020-11-03 23:34:36 +01007# After starting, re-create the postgres database (because docker/postgres won't let you set ENCODING):
8# postgres=# drop database synapse;
9# DROP DATABASE
10# postgres=# CREATE DATABASE synapse
11# postgres-# ENCODING 'UTF8'
12# postgres-# LC_COLLATE='C'
13# postgres-# LC_CTYPE='C'
14# postgres-# template=template0
15# postgres-# OWNER synapse;
16# CREATE DATABASE
17#
Serge Bazanskide627512020-08-24 21:17:55 +000018# Sequencing appservices is fun. The appservice needs to run first (for
19# instance, via a bootstrap job), and on startup it will spit out a
20# registration file. This registration file then needs to be fed to synapse -
21# this is done via specialy named secrets (appservice-X-registration, for X key
22# in the appservices object).
23#
24# For appservice-irc instances, you can use this oneliner magic to get the
25# registration YAML from logs.
Piotr Dobrowolski3ea979d2019-05-23 16:11:52 +020026# kubectl -n matrix create secret generic appservice-irc-freenode-registration --from-file=registration.yaml=<(kubectl logs -n matrix $(kubectl get pods -n matrix --selector=job-name=appservice-irc-freenode-bootstrap --output=jsonpath='{.items[*].metadata.name}') | tail -n +4 | sed -r 's/(.*aliases:.*)/ group_id: "+freenode:hackerspace.pl"\n\1/')
Serge Bazanskide627512020-08-24 21:17:55 +000027#
28# For appservice-telegram instances, you can use this oneliner magic:
29# kubectl -n matrix create secret generic appservice-telegram-prod-registration --from-file=registration.yaml=<(kubectl -n matrix logs job/appservice-telegram-prod-bootstrap | grep -A 100 SNIPSNIP | grep -v SNIPSNIP)
Piotr Dobrowolskia2226912019-05-14 18:49:29 +020030
Serge Bazanski60076c72020-11-03 19:17:25 +010031local kube = import "../../../kube/kube.libsonnet";
32local postgres = import "../../../kube/postgres.libsonnet";
Serge Bazanskicdba2912020-08-24 19:11:10 +000033
Piotr Dobrowolskia2226912019-05-14 18:49:29 +020034{
35 local app = self,
36 local cfg = app.cfg,
37 cfg:: {
Serge Bazanski60076c72020-11-03 19:17:25 +010038 namespace: error "cfg.namespace must be set",
39 # webDomain is the domain name at which element will run
40 webDomain: error "cfg.webDomain must be set",
41 # serverName is the server part of the MXID this homeserver will cover
42 serverName: error "cfg.serverName must be set",
Serge Bazanskide627512020-08-24 21:17:55 +000043 storageClassName: "waw-hdd-redundant-3",
Piotr Dobrowolskifef4c122019-05-16 21:05:02 +020044
Serge Bazanskiace32c02020-11-03 22:04:06 +010045 images: {
46 synapse: "matrixdotorg/synapse:v1.19.2",
Serge Bazanskid67635d2020-12-29 23:25:54 +010047 riot: "vectorim/riot-web:v1.7.16",
Serge Bazanskiace32c02020-11-03 22:04:06 +010048 casProxy: "registry.k0.hswaw.net/q3k/oauth2-cas-proxy:0.1.4",
49 appserviceIRC: "matrixdotorg/matrix-appservice-irc:release-0.17.1",
50 # That's v0.8.2 - we just don't trust that host to not re-tag images.
51 appserviceTelegram: "dock.mau.dev/tulir/mautrix-telegram@sha256:9e68eaa80c9e4a75d9a09ec92dc4898b12d48390e01efa4de40ce882a6f7e330",
Piotr Dobrowolski63244ca2021-01-30 00:14:02 +010052 wellKnown: "registry.k0.hswaw.net/q3k/wellknown:1611960794-adbf560851a46ad0e58b42f0daad7ef19535687c",
Serge Bazanskiace32c02020-11-03 22:04:06 +010053 },
54
Norbert Szulcc67abc22020-11-08 16:46:56 +010055 # Central Authentication Scheme, a single-sign-on system. Note: this flow is now called 'SSO' in Matrix, we keep this name for legacy reasons.
56 # Refer to https://matrix.org/docs/spec/client_server/r0.6.1#sso-client-login
Serge Bazanskiace32c02020-11-03 22:04:06 +010057 cas: {
58 # whether to enable the CAS proxy (ie. connect to hswaw sso via OAuth)
59 enable: false,
Norbert Szulc014c9cd2020-11-08 16:44:48 +010060 # generate client ID and secret in with your OAuth2 provider, refer to https://www.oauth.com/oauth2-servers/client-registration/client-id-secret/
61 oauth2: {
62 clientID: error "cas.oauth2.clientID must be set",
63 clientSecret: error "cas.oauth2.clientSecret must be set",
64 scope: error "cas.oauth2.scope must be set",
65 authorizeURL: error "cas.oauth2.authorizeURL must be set",
66 tokenURL: error "cas.oauth2.tokenURL must be set",
67 userinfoURL: error "cas.oauth2.userinfoURL must be set",
68 },
Serge Bazanskiace32c02020-11-03 22:04:06 +010069 },
Piotr Dobrowolski63244ca2021-01-30 00:14:02 +010070
71 wellKnown: false,
Piotr Dobrowolskia2226912019-05-14 18:49:29 +020072 },
73
74 metadata(component):: {
Piotr Dobrowolski4b4231d2019-05-15 11:41:21 +020075 namespace: cfg.namespace,
Piotr Dobrowolskia2226912019-05-14 18:49:29 +020076 labels: {
77 "app.kubernetes.io/name": "matrix",
78 "app.kubernetes.io/managed-by": "kubecfg",
79 "app.kubernetes.io/component": component,
80 },
81 },
82
Piotr Dobrowolski4b4231d2019-05-15 11:41:21 +020083 namespace: kube.Namespace(cfg.namespace),
Piotr Dobrowolskia2226912019-05-14 18:49:29 +020084
Serge Bazanskic0c037a2020-08-23 01:24:03 +000085 postgres3: postgres {
Piotr Dobrowolskia2226912019-05-14 18:49:29 +020086 cfg+: {
87 namespace: cfg.namespace,
88 appName: "synapse",
89 database: "synapse",
90 username: "synapse",
Serge Bazanskic0c037a2020-08-23 01:24:03 +000091 prefix: "waw3-",
Piotr Dobrowolskia2226912019-05-14 18:49:29 +020092 password: { secretKeyRef: { name: "synapse", key: "postgres_password" } },
Serge Bazanskide627512020-08-24 21:17:55 +000093 storageClassName: cfg.storageClassName,
Serge Bazanskic0c037a2020-08-23 01:24:03 +000094 storageSize: "100Gi",
Piotr Dobrowolskia2226912019-05-14 18:49:29 +020095 },
96 },
97
Serge Bazanskic0c037a2020-08-23 01:24:03 +000098 dataVolume: kube.PersistentVolumeClaim("synapse-data-waw3") {
Piotr Dobrowolskia2226912019-05-14 18:49:29 +020099 metadata+: app.metadata("synapse-data"),
100 spec+: {
Serge Bazanskide627512020-08-24 21:17:55 +0000101 storageClassName: cfg.storageClassName,
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200102 accessModes: [ "ReadWriteOnce" ],
103 resources: {
104 requests: {
105 storage: "50Gi",
106 },
107 },
108 },
109 },
Piotr Dobrowolskiffbb47c2019-05-16 12:18:39 +0200110
Serge Bazanski21a96162020-11-03 23:34:36 +0100111 // homeserver.yaml that will be used to run synapse (in synapseConfigMap).
Serge Bazanskiace32c02020-11-03 22:04:06 +0100112 // This is based off of //app/matrix/lib/synapse/homeserver.yaml with some fields overriden per
113 // deployment.
114 // Note this is a templated yaml - {{}}/{%%} style. This templatization is consumed by the Docker
115 // container startup magic.
Serge Bazanski21a96162020-11-03 23:34:36 +0100116 synapseConfig:: (std.native("parseYaml"))(importstr "synapse/homeserver.yaml")[0] {
Serge Bazanskiace32c02020-11-03 22:04:06 +0100117 server_name: cfg.serverName,
118 public_baseurl: "https://%s" % [cfg.webDomain],
119 signing_key_path: "/data/%s.signing.key" % [cfg.serverName],
Serge Bazanski21a96162020-11-03 23:34:36 +0100120 app_service_config_files: [
121 "/appservices/%s/registration.yaml" % [k]
122 for k in std.objectFields(app.appservices)
123 ],
124 } + (if cfg.cas.enable then {
125 cas_config: {
Serge Bazanskiace32c02020-11-03 22:04:06 +0100126 enabled: true,
127 server_url: "https://%s/_cas" % [cfg.webDomain],
128 service_url: "https://%s" % [cfg.webDomain],
Serge Bazanski21a96162020-11-03 23:34:36 +0100129 },
130 } else {}),
Serge Bazanskiace32c02020-11-03 22:04:06 +0100131
Serge Bazanski21a96162020-11-03 23:34:36 +0100132 synapseConfigMap: kube.ConfigMap("synapse") {
Piotr Dobrowolskic39fb042019-05-17 09:13:56 +0200133 metadata+: app.metadata("synapse"),
134 data: {
Serge Bazanski21a96162020-11-03 23:34:36 +0100135 "homeserver.yaml": std.manifestYamlDoc(app.synapseConfig),
Serge Bazanski60076c72020-11-03 19:17:25 +0100136 "log.config": importstr "synapse/log.config",
Piotr Dobrowolskic39fb042019-05-17 09:13:56 +0200137 },
138 },
139
Serge Bazanskiace32c02020-11-03 22:04:06 +0100140 casDeployment: if cfg.cas.enable then kube.Deployment("oauth2-cas-proxy") {
Piotr Dobrowolskic39fb042019-05-17 09:13:56 +0200141 metadata+: app.metadata("oauth2-cas-proxy"),
142 spec+: {
143 replicas: 1,
144 template+: {
145 spec+: {
146 containers_: {
147 proxy: kube.Container("oauth2-cas-proxy") {
Serge Bazanskiace32c02020-11-03 22:04:06 +0100148 image: cfg.images.casProxy,
Piotr Dobrowolskic39fb042019-05-17 09:13:56 +0200149 ports_: {
150 http: { containerPort: 5000 },
151 },
152 env_: {
Serge Bazanski60076c72020-11-03 19:17:25 +0100153 BASE_URL: "https://%s" % [cfg.webDomain],
154 SERVICE_URL: "https://%s" % [cfg.webDomain],
Norbert Szulc014c9cd2020-11-08 16:44:48 +0100155 OAUTH2_CLIENT: cfg.cas.oauth2.clientID,
156 OAUTH2_SECRET: cfg.cas.oauth2.clientSecret,
157 OAUTH2_SCOPE: cfg.cas.oauth2.scope,
158 OAUTH2_AUTHORIZE: cfg.cas.oauth2.authorizeURL,
159 OAUTH2_TOKEN: cfg.cas.oauth2.tokenURL,
160 OAUTH2_USERINFO: cfg.cas.oauth2.userinfoURL,
Piotr Dobrowolskic39fb042019-05-17 09:13:56 +0200161 },
162 },
163 },
164 },
165 },
166 },
167 },
168
Serge Bazanskiace32c02020-11-03 22:04:06 +0100169 casSvc: if cfg.cas.enable then kube.Service("oauth2-cas-proxy") {
Piotr Dobrowolskic39fb042019-05-17 09:13:56 +0200170 metadata+: app.metadata("oauth2-cas-proxy"),
171 target_pod:: app.casDeployment.spec.template,
172 },
173
Piotr Dobrowolskifef4c122019-05-16 21:05:02 +0200174 synapseDeployment: kube.Deployment("synapse") {
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200175 metadata+: app.metadata("synapse"),
176 spec+: {
177 replicas: 1,
178 template+: {
179 spec+: {
180 volumes_: {
181 data: kube.PersistentVolumeClaimVolume(app.dataVolume),
Serge Bazanski21a96162020-11-03 23:34:36 +0100182 config: kube.ConfigMapVolume(app.synapseConfigMap),
Piotr Dobrowolskifef4c122019-05-16 21:05:02 +0200183 } + {
184 [k]: { secret: { secretName: "appservice-%s-registration" % [k] } }
185 for k in std.objectFields(app.appservices)
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200186 },
187 containers_: {
188 web: kube.Container("synapse") {
Serge Bazanskiace32c02020-11-03 22:04:06 +0100189 image: cfg.images.synapse,
Piotr Dobrowolski8ebfc1d2020-03-03 21:01:18 +0100190 command: ["/bin/sh", "-c", "/start.py migrate_config && exec /start.py"],
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200191 ports_: {
192 http: { containerPort: 8008 },
Serge Bazanski1230ac32020-09-12 22:09:46 +0000193 metrics: { containerPort: 9092 },
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200194 },
195 env_: {
Serge Bazanski21a96162020-11-03 23:34:36 +0100196 SYNAPSE_CONFIG_DIR: "/tmp/config",
197 SYNAPSE_CONFIG_PATH: "/tmp/config/homeserver.yaml",
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200198
Piotr Dobrowolski8ebfc1d2020-03-03 21:01:18 +0100199 # These values are not used in a template, but
200 # are required by /start.py migrate_config
Serge Bazanski60076c72020-11-03 19:17:25 +0100201 SYNAPSE_SERVER_NAME: cfg.serverName,
Piotr Dobrowolski8ebfc1d2020-03-03 21:01:18 +0100202 SYNAPSE_REPORT_STATS: "no",
203
204 SYNAPSE_MACAROON_SECRET_KEY: { secretKeyRef: { name: "synapse", key: "macaroon_secret_key" } },
205 SYNAPSE_REGISTRATION_SHARED_SECRET: { secretKeyRef: { name: "synapse", key: "registration_shared_secret" } },
206 POSTGRES_PASSWORD: { secretKeyRef: { name: "synapse", key: "postgres_password" } },
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200207 },
208 volumeMounts_: {
209 data: { mountPath: "/data" },
Serge Bazanski21a96162020-11-03 23:34:36 +0100210 config: { mountPath: "/conf", },
Piotr Dobrowolskifef4c122019-05-16 21:05:02 +0200211 } + {
212 [k]: { mountPath: "/appservices/%s" % [k] }
213 for k in std.objectFields(app.appservices)
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200214 },
215 },
216 },
Serge Bazanski21a96162020-11-03 23:34:36 +0100217 securityContext: {
218 runAsUser: 991,
219 runAsGroup: 991,
220 fsGroup: 991,
221 },
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200222 },
223 },
224 },
225 },
226
Piotr Dobrowolskifef4c122019-05-16 21:05:02 +0200227 synapseSvc: kube.Service("synapse") {
Piotr Dobrowolskiffbb47c2019-05-16 12:18:39 +0200228 metadata+: app.metadata("synapse"),
Piotr Dobrowolskifef4c122019-05-16 21:05:02 +0200229 target_pod:: app.synapseDeployment.spec.template,
Piotr Dobrowolskiffbb47c2019-05-16 12:18:39 +0200230 },
231
Norbert Szulc1ef56002020-11-08 16:13:58 +0100232 riotConfig:: {
233 "default_hs_url": "https://%s" % [cfg.webDomain],
234 "disable_custom_urls": false,
235 "disable_guests": false,
236 "disable_login_language_selector": false,
237 "disable_3pid_login": true,
238 "brand": "Riot",
239 "integrations_ui_url": "https://scalar.vector.im/",
240 "integrations_rest_url": "https://scalar.vector.im/api",
241 "integrations_jitsi_widget_url": "https://scalar.vector.im/api/widgets/jitsi.html",
242
243 "bug_report_endpoint_url": "https://riot.im/bugreports/submit",
244 "features": {
245 "feature_groups": "labs",
246 "feature_pinning": "labs",
247 "feature_reactions": "labs"
248 },
249 "default_federate": true,
250 "default_theme": "light",
251 "roomDirectory": {
252 "servers": [
253 cfg.serverName,
254 ]
255 },
256 "welcomeUserId": "@riot-bot:matrix.org",
257 "enable_presence_by_hs_url": {
258 "https://matrix.org": false
259 }
260 },
261
262 riotConfigMap: kube.ConfigMap("riot-web-config") {
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200263 metadata+: app.metadata("riot-web-config"),
264 data: {
Norbert Szulc1ef56002020-11-08 16:13:58 +0100265 "config.json": std.manifestJsonEx(app.riotConfig, ""),
Serge Bazanski21a96162020-11-03 23:34:36 +0100266 // Standard nginx.conf, made to work when running as unprivileged user.
267 "nginx.conf": |||
268 worker_processes auto;
269
270 error_log /tmp/nginx_error.log warn;
271 pid /tmp/nginx.pid;
272
273 events {
274 worker_connections 1024;
275 }
276
277
278 http {
279 client_body_temp_path /tmp/nginx_client_temp;
280 proxy_temp_path /tmp/nginx_proxy_temp;
281 fastcgi_temp_path /tmp/nginx_fastcgi_temp;
282 uwsgi_temp_path /tmp/nginx_uwsgi_temp;
283 scgi_temp_path /tmp/nginx_scgi_temp;
284
285 include /etc/nginx/mime.types;
286 default_type application/octet-stream;
287 log_format main '$remote_addr - $remote_user [$time_local] "$request" '
288 '$status $body_bytes_sent "$http_referer" '
289 '"$http_user_agent" "$http_x_forwarded_for"';
290 access_log /tmp/nginx_access.log main;
291 sendfile on;
292 keepalive_timeout 65;
293
294 server {
295 listen 8080;
296 server_name localhost;
297
298 location / {
299 root /usr/share/nginx/html;
300 index index.html index.htm;
301 }
302
303 error_page 500 502 503 504 /50x.html;
304 location = /50x.html {
305 root /usr/share/nginx/html;
306 }
307 }
308 }
309 |||,
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200310 },
311 },
312
313 riotDeployment: kube.Deployment("riot-web") {
314 metadata+: app.metadata("riot-web"),
315 spec+: {
316 replicas: 1,
317 template+: {
318 spec+: {
319 volumes_: {
Norbert Szulc1ef56002020-11-08 16:13:58 +0100320 config: kube.ConfigMapVolume(app.riotConfigMap),
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200321 },
322 containers_: {
Piotr Dobrowolskifef4c122019-05-16 21:05:02 +0200323 web: kube.Container("riot-web") {
Serge Bazanskiace32c02020-11-03 22:04:06 +0100324 image: cfg.images.riot,
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200325 ports_: {
Serge Bazanski21a96162020-11-03 23:34:36 +0100326 http: { containerPort: 8080 },
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200327 },
Serge Bazanski21a96162020-11-03 23:34:36 +0100328 volumeMounts: [
329 {
330 name: "config",
Piotr Dobrowolskiaca7e282020-03-21 22:14:38 +0100331 mountPath: "/app/config.json",
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200332 subPath: "config.json",
333 },
Serge Bazanski21a96162020-11-03 23:34:36 +0100334 {
335 name: "config",
336 mountPath: "/etc/nginx/nginx.conf",
337 subPath: "nginx.conf",
338 },
339 ],
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200340 },
341 },
Serge Bazanski21a96162020-11-03 23:34:36 +0100342 securityContext: {
343 // nginx:nginx
344 runAsUser: 101,
345 runAsGroup: 101,
346 },
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200347 },
348 },
349 },
350 },
351
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200352 riotSvc: kube.Service("riot-web") {
353 metadata+: app.metadata("riot-web"),
354 target_pod:: app.riotDeployment.spec.template,
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200355 },
356
Piotr Dobrowolski63244ca2021-01-30 00:14:02 +0100357 wellKnown: if cfg.wellKnown then {
358 deployment: kube.Deployment("wellknown") {
359 metadata+: app.metadata("wellknown"),
360 spec+: {
361 replicas: 1,
362 template+: {
363 spec+: {
364 containers_: {
365 web: kube.Container("wellknown") {
366 image: cfg.images.wellKnown,
367 ports_: {
368 http: { containerPort: 8080 },
369 },
370 command: ["/app/matrix/wellknown"],
371 args: ["-hspki_disable", "-domain", cfg.webDomain],
372 },
373 },
374 securityContext: {
375 runAsUser: 101,
376 runAsGroup: 101,
377 },
378 },
379 },
380 },
381 },
382 svc: kube.Service("wellknown") {
383 metadata+: app.metadata("wellknown"),
384 target_pod:: app.wellKnown.deployment.spec.template,
385 },
386 } else {},
387
Serge Bazanskide627512020-08-24 21:17:55 +0000388 // Any appservice you add here will require an appservice-X-registration
389 // secret containing a registration.yaml file. Adding something to this
390 // dictionary will cause Synapse to not start until that secret is
391 // available - so change things carefully!
392 // If bootstrapping a new appservice, just keep it out of this dictionary
393 // until it spits you a registration YAML and you feed that to a secret.
Serge Bazanski60076c72020-11-03 19:17:25 +0100394 appservices: {},
Piotr Dobrowolskifef4c122019-05-16 21:05:02 +0200395
396 ingress: kube.Ingress("matrix") {
397 metadata+: app.metadata("matrix") {
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200398 annotations+: {
399 "kubernetes.io/tls-acme": "true",
400 "certmanager.k8s.io/cluster-issuer": "letsencrypt-prod",
401 "nginx.ingress.kubernetes.io/proxy-body-size": "0",
402 },
403 },
404 spec+: {
405 tls: [
406 {
Serge Bazanski60076c72020-11-03 19:17:25 +0100407 hosts: [cfg.webDomain],
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200408 secretName: "synapse-tls",
409 },
410 ],
411 rules: [
412 {
Serge Bazanski60076c72020-11-03 19:17:25 +0100413 host: cfg.webDomain,
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200414 http: {
415 paths: [
416 { path: "/", backend: app.riotSvc.name_port },
Piotr Dobrowolskifef4c122019-05-16 21:05:02 +0200417 { path: "/_matrix", backend: app.synapseSvc.name_port },
Serge Bazanskiace32c02020-11-03 22:04:06 +0100418 ] + (if cfg.cas.enable then [
Piotr Dobrowolskic39fb042019-05-17 09:13:56 +0200419 { path: "/_cas", backend: app.casSvc.name_port },
Piotr Dobrowolski63244ca2021-01-30 00:14:02 +0100420 ] else []) + (if cfg.wellKnown then [
421 { path: "/.well-known/matrix", backend: app.wellKnown.svc.name_port },
Serge Bazanskiace32c02020-11-03 22:04:06 +0100422 ] else [])
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200423 },
424 }
425 ],
426 },
427 },
Piotr Dobrowolskifef4c122019-05-16 21:05:02 +0200428
Piotr Dobrowolskia2226912019-05-14 18:49:29 +0200429}