mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-08 02:16:04 +00:00
20 lines
793 B
YAML
20 lines
793 B
YAML
# run_once_sys_stk_back_stateful: disabled
|
|
|
|
- name: "For '{{ application_id }}': Set database_application_id (Needed due to lazzy loading issue)"
|
|
set_fact:
|
|
database_application_id: "{{ application_id }}"
|
|
database_application_type: "{{ database_type }}"
|
|
|
|
- name: "For '{{ application_id }}': Load database variables"
|
|
include_vars: "{{ item }}"
|
|
loop:
|
|
- "{{ DOCKER_VARS_FILE }}" # Important to load docker variables first so that database can use them
|
|
- "{{ DATABASE_VARS_FILE }}" # Important to load them before docker role so that backup can use them
|
|
|
|
- name: "For '{{ application_id }}': Load central RDBMS"
|
|
include_role:
|
|
name: sys-svc-rdbms
|
|
|
|
- name: "For '{{ application_id }}': Load sys-stk-back-stateless"
|
|
include_role:
|
|
name: sys-stk-back-stateless |