-
Notifications
You must be signed in to change notification settings - Fork 5
/
main.yml
425 lines (384 loc) · 9.5 KB
/
main.yml
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
# Basic dependencies installation
- name: install app dependencies
ansible.builtin.apt:
pkg:
- cron
- python3-dev
- python3-venv
- build-essential
- libffi-dev
- libssl-dev
- libmariadb-dev
- autoconf # for gulp-imagemin Node.js package
- automake # for gulp-imagemin Node.js package
- rustc # for cryptography Python package
- optipng # for easy-thumbnails Python package
- jpegoptim # for easy-thumbnails Python package
- memcached # for cache storage in prod configuration
- pkg-config # for mysqlclient since version 2.2.0
state: present
cache_valid_time: 3600
tags:
- bootstrap
- name: restart memcached
ansible.builtin.systemd:
name: memcached
state: restarted
tags:
- bootstrap
# User, directories, files and symlink creation
- name: should have a user named {{ appuser }}
ansible.builtin.user:
name: "{{ appuser }}"
shell: /bin/false
home: "{{ workdir }}"
comment: "Zeste de Savoir"
tags:
- bootstrap
- name: create the needed directories
ansible.builtin.file:
path: "{{ item }}"
state: directory
owner: "{{ appuser }}"
group: "{{ appuser }}"
mode: u=rwx,g=rx,o=rx
with_items:
- "{{ logdir }}"
- "{{ workdir }}"
- "{{ appdir }}"
- "{{ rundir }}"
- "{{ datadir }}"
- "{{ datadir }}/contents-private"
- "{{ datadir }}/contents-public"
- "{{ datadir }}/media"
- "{{ datadir }}/static"
tags:
- bootstrap
- name: checkout the application
become: true
become_user: "{{ appuser }}"
vars:
refspec: "{{ '+refs/pull/*:refs/pull/*' if 'pull/' in appversion else '+refs/heads/*:refs/remotes/origin/*' }}"
ansible.builtin.git:
repo: "{{ apprepo }}"
dest: "{{ appdir }}"
version: "{{ appversion }}"
refspec: "{{ refspec }}"
register: app
tags:
- bootstrap
- upgrade
- name: symlink data folders
ansible.builtin.file:
src: "{{ datadir }}/{{ item }}"
dest: "{{ appdir }}/{{ item }}"
owner: "{{ appuser }}"
group: "{{ appuser }}"
state: link
with_items:
- contents-private
- contents-public
- media
- static
tags:
- bootstrap
- name: save version file
ansible.builtin.template:
src: templates/_version.py.j2
dest: "{{ appdir }}/zds/_version.py"
owner: "{{ appuser }}"
group: "{{ appuser }}"
mode: u=rw,g=r,o=r
tags:
- bootstrap
- upgrade
- name: save wrapper
ansible.builtin.template:
src: templates/wrapper.j2
dest: "{{ workdir }}/wrapper"
owner: "{{ appuser }}"
group: "{{ appuser }}"
mode: u=rwx,g=rx,o=rx
tags:
- bootstrap
- name: create app config file
ansible.builtin.template:
src: templates/config.toml.j2
dest: "{{ workdir }}/config.toml"
owner: "{{ appuser }}"
group: "{{ appuser }}"
mode: u=rw,g=r,o=r
tags:
- bootstrap
- upgrade
- name: create webroot
ansible.builtin.file:
path: "{{ webroot }}"
state: directory
mode: u=rwx,g=rx,o=rx
tags:
- bootstrap
- name: create symlinks in webroot
ansible.builtin.file:
src: "{{ item.src }}"
dest: "{{ webroot }}/{{ item.dest }}"
state: link
with_items:
- src: "{{ appdir }}/errors"
dest: "errors"
- src: "{{ datadir }}/media"
dest: "media"
- src: "{{ datadir }}/static"
dest: "static"
tags:
- bootstrap
- name: create robots.txt in webroot for prod
ansible.builtin.file:
src: "{{ appdir }}/robots.txt"
dest: "{{ webroot }}/robots.txt"
state: link
when: env == "prod"
tags:
- bootstrap
- name: create robots.txt in webroot for beta
ansible.builtin.copy:
src: "robots-deny.txt"
dest: "{{ webroot }}/robots.txt"
mode: u=rw,g=r,o=r
when: env == "beta"
tags:
- bootstrap
# Installation of backend, frontend and zmd dependencies
- name: update pip in virtualenv # some dependencies (like rust ones) require a recent pip
become: true
become_user: "{{ appuser }}"
ansible.builtin.pip:
name:
- pip
extra_args: --upgrade
virtualenv: "{{ virtualenv }}"
virtualenv_command: /usr/bin/python3 -m venv
tags:
- bootstrap
- name: install wheel and sqlparse in virtualenv
become: true
become_user: "{{ appuser }}"
ansible.builtin.pip:
name:
- wheel
- sqlparse
virtualenv: "{{ virtualenv }}"
virtualenv_command: /usr/bin/python3 -m venv
tags:
- bootstrap
- name: install requirements in virtualenv
become: true
become_user: "{{ appuser }}"
ansible.builtin.pip:
requirements: "{{ appdir }}/requirements-prod.txt"
virtualenv: "{{ virtualenv }}"
virtualenv_command: /usr/bin/python3 -m venv
tags:
- bootstrap
- upgrade
- name: patch elasticsearch-dsl for Python 3.11
become: true
become_user: "{{ appuser }}"
ansible.builtin.lineinfile:
path: "{{ virtualenv }}/lib/python3.11/site-packages/elasticsearch_dsl/{{ item }}"
regexp: "^import collections$"
line: "import collections.abc as collections"
firstmatch: true
with_items:
- search.py
- utils.py
- mapping.py
- field.py
- aggs.py
- document.py
- function.py
- query.py
tags:
- bootstrap
- upgrade
- name: include nodejs installation
ansible.builtin.include_role:
name: common
tasks_from: nodejs
tags:
- bootstrap
- name: install frontend # noqa no-changed-when
become: true
become_user: "{{ appuser }}"
ansible.builtin.command: yarn install --frozen-lockfile
args:
chdir: "{{ appdir }}"
tags:
- bootstrap
- upgrade
- name: install zmarkdown
become: true
become_user: "{{ appuser }}"
community.general.npm:
path: "{{ zmarkdown_dir }}"
production: true
tags:
- bootstrap
- upgrade
# Frontend building
- name: build frontend # noqa no-changed-when
become: true
become_user: "{{ appuser }}"
ansible.builtin.command: npm run build
args:
chdir: "{{ appdir }}"
tags:
- bootstrap
- upgrade
- name: collect static files
become: true
become_user: "{{ appuser }}"
environment:
DJANGO_SETTINGS_MODULE: "zds.settings.{{ env }}"
ZDS_CONFIG: "{{ workdir }}/config.toml"
community.general.django_manage:
app_path: "{{ appdir }}"
virtualenv: "{{ virtualenv }}"
command: collectstatic
tags:
- bootstrap
- upgrade
# Database migration and cache clearing
# Start of maintenance, if needed
- name: check if database migration is needed
become: true
become_user: "{{ appuser }}"
environment:
DJANGO_SETTINGS_MODULE: "zds.settings.{{ env }}"
ZDS_CONFIG: "{{ workdir }}/config.toml"
community.general.django_manage:
app_path: "{{ appdir }}"
virtualenv: "{{ virtualenv }}"
command: migrate --plan
register: migrate_plan
tags:
- bootstrap
- upgrade
- name: create symlink to the maintenance page
ansible.builtin.file:
src: "{{ webroot }}/errors/maintenance.html"
dest: "{{ webroot }}/maintenance.html"
state: link
when: "'No planned migration operations.' not in migrate_plan.out"
tags:
- bootstrap
- upgrade
- name: migrate database
become: true
become_user: "{{ appuser }}"
environment:
DJANGO_SETTINGS_MODULE: "zds.settings.{{ env }}"
ZDS_CONFIG: "{{ workdir }}/config.toml"
community.general.django_manage:
app_path: "{{ appdir }}"
virtualenv: "{{ virtualenv }}"
command: migrate
when: "'No planned migration operations.' not in migrate_plan.out"
tags:
- bootstrap
- upgrade
- name: clear cache
become: true
become_user: "{{ appuser }}"
environment:
DJANGO_SETTINGS_MODULE: "zds.settings.{{ env }}"
ZDS_CONFIG: "{{ workdir }}/config.toml"
community.general.django_manage:
app_path: "{{ appdir }}"
virtualenv: "{{ virtualenv }}"
command: clear_cache
tags:
- bootstrap
- upgrade
# Services and timers
- name: create services and timers files
ansible.builtin.template:
src: templates/{{ item }}.j2
dest: "/etc/systemd/system/{{ item }}"
mode: u=rw,g=r,o=r
with_items:
- zmd.service
- zds.service
- zds.socket
- zds-es-index.service
- zds-es-index.timer
- zds-watchdog.service
tags:
- bootstrap
- name: start services and timers
ansible.builtin.systemd:
state: started
name: "{{ item }}"
enabled: true
daemon_reload: true
with_items:
- zmd.service
- zds.service
- zds.socket
- zds-es-index.timer
- zds-watchdog.service
tags:
- bootstrap
- name: reload zmarkdown and zds
ansible.builtin.systemd:
name: "{{ item }}"
state: reloaded
with_items:
- zmd
- zds
tags:
- bootstrap
- upgrade
- name: restart watchdog
ansible.builtin.systemd:
name: zds-watchdog
state: restarted
tags:
- bootstrap
- upgrade
- name: ensure that zmarkdown is running
ansible.builtin.uri:
url: http://localhost:27272/
return_content: true
register: this
delay: 1
retries: 10
until: "'zmd is running' in this.content"
tags:
- bootstrap
- upgrade
- name: load fixtures
ansible.builtin.include_tasks: fixtures.yml
when: load_fixtures
tags:
- bootstrap
- name: setup geodata
ansible.builtin.include_tasks: geodata.yml
when: secrets.geolite.license_key is defined
tags:
- bootstrap
# End of maintenance, if needed
- name: remove maintenance symlink
ansible.builtin.file:
path: "{{ webroot }}/maintenance.html"
state: absent
tags:
- bootstrap
- upgrade
- name: create /root/bin/service-zds.sh
ansible.builtin.copy:
src: "service-zds.sh"
dest: "/root/bin/service-zds.sh"
mode: u=rwx,g=,o=
tags:
- bootstrap