mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-02 07:38:22 +00:00
- Replace legacy utils/run_once.yml with the new helpers utils/once_flag.yml and utils/once_finalize.yml - Introduce utils/compose_up.yml to ensure docker-compose stacks are up and to flush handlers safely without coupling to run-once flags - Migrate all affected roles (desk-*, dev-*, sys-ctl-*, sys-svc-*, web-app-*, web-svc-*, util-*) to the new run-once helpers - Rework sys-svc-msmtp to auto-load Mailu once per deploy, check reachability, and reuse the running stack instead of requiring multiple playbook passes - Adjust web-app-mailu to integrate cert deployment, handler flushing, and run-once handling so Mailu is fully initialized in a single deploy - Improve Matomo, CDN, logout and CSP/health-check related roles to cooperate with the new compose_up / once_* pattern - Simplify alarm/backup/timer/service orchestration (sys-ctl-alm-*, sys-bkp-provider, sys-timer-cln-bkps, etc.) by moving run-once logic into dedicated 01_core.yml files - Update integration tests so utils/once_flag.yml and utils/once_finalize.yml are recognised as valid run-once providers, keeping the global run_once_* guarantees consistent - Align frontend injection and service dependencies so Mastodon- and Mailu-related services can be brought up coherently within a single deployment cycle rather than several iterations
57 lines
1.6 KiB
YAML
57 lines
1.6 KiB
YAML
- name: "cleanup (if enabled)"
|
|
include_tasks: 02_cleanup.yml
|
|
when: >
|
|
MODE_CLEANUP | bool or
|
|
MODE_RESET | bool
|
|
|
|
- name: "reset (if enabled)"
|
|
include_tasks: 03_reset.yml
|
|
when: MODE_RESET | bool
|
|
|
|
- name: "Load variables from {{ DOCKER_VARS_FILE }} for {{ role_name }}/{{ application_id }}"
|
|
include_vars: "{{ DOCKER_VARS_FILE }}"
|
|
|
|
- name: "Load docker compose & openresty handlers"
|
|
include_tasks: "{{ [ playbook_dir, 'tasks/utils/load_handlers.yml' ] | path_join }}"
|
|
loop:
|
|
- docker-compose
|
|
- svc-prx-openresty
|
|
loop_control:
|
|
loop_var: handler_role_name
|
|
|
|
- name: "Include tasks to create directories"
|
|
include_tasks: 04_directories.yml
|
|
|
|
- name: create nginx config file
|
|
template:
|
|
src: nginx.conf.j2
|
|
dest: "{{ NGINX.FILES.CONFIGURATION }}"
|
|
notify: restart openresty
|
|
|
|
- name: Include openresty
|
|
# Outside of run_once block is necessary for handler loading
|
|
# Otherwise the when: condition from the block is added to the handlers
|
|
# Inside openresty their is a validation that it doesn't run multiple times
|
|
include_role:
|
|
name: svc-prx-openresty
|
|
|
|
# Explicit set to guaranty that application_id will not be overwritten.
|
|
# Should be anyhow the default case
|
|
public: false
|
|
|
|
vars:
|
|
# Flush openresty handler on first run, so that openresty is up, before openresty related handlers are triggered
|
|
flush_handlers: true
|
|
when: run_once_svc_prx_openresty is not defined
|
|
|
|
- name: Include health dependencies
|
|
include_role:
|
|
name: "{{ item }}"
|
|
loop:
|
|
- sys-ctl-hlth-webserver
|
|
- sys-ctl-hlth-csp
|
|
vars:
|
|
flush_handlers: false
|
|
|
|
- include_tasks: utils/once_finalize.yml
|