2021-02-23 09:42:26 +01:00
|
|
|
---
|
2021-05-31 18:05:32 +02:00
|
|
|
- hosts: pre_infra
|
2021-02-23 09:42:26 +01:00
|
|
|
vars_files:
|
2021-03-24 17:26:49 +01:00
|
|
|
- roles/workers/defaults/smtp.yaml
|
2021-05-18 15:10:08 +02:00
|
|
|
- roles/pep/defaults/pep_credentials.yaml
|
|
|
|
- roles/conductor/defaults/conductor_ui_secrets.yaml
|
2021-02-23 09:42:26 +01:00
|
|
|
vars:
|
2021-05-18 15:10:08 +02:00
|
|
|
infrastructure: "pre"
|
2021-03-24 17:26:49 +01:00
|
|
|
pymail_password: "{{ smtp_pre_pwd }}"
|
2021-05-18 15:10:08 +02:00
|
|
|
iam_host: https://accounts.pre.d4science.org
|
|
|
|
pep: True
|
2021-05-25 10:13:08 +02:00
|
|
|
pep_replicas: 2
|
2021-05-18 15:10:08 +02:00
|
|
|
pep_credentials: "{{ pre_pep_credentials }}"
|
2021-05-20 17:17:16 +02:00
|
|
|
ha_network: True
|
2021-05-18 15:10:08 +02:00
|
|
|
conductor_ui_secret: "{{ pre_conductor_ui_secret }}"
|
|
|
|
conductor_auth: oauth2
|
2021-05-19 17:02:57 +02:00
|
|
|
conductor_server_name: conductor.pre.d4science.org
|
|
|
|
conductor_ui_server_name: conductor-ui.pre.d4science.org
|
2021-05-20 17:50:45 +02:00
|
|
|
conductor_ui_public_url: "https://{{ conductor_ui_server_name }}"
|
2021-06-01 10:26:39 +02:00
|
|
|
conductor_replicas: 1
|
2021-05-18 15:10:08 +02:00
|
|
|
conductor_ui_replicas: 2
|
2021-02-23 09:42:26 +01:00
|
|
|
roles:
|
|
|
|
- common
|
2021-05-18 15:10:08 +02:00
|
|
|
- databases
|
2021-02-23 09:42:26 +01:00
|
|
|
- conductor
|
|
|
|
- workers
|
2021-05-18 15:10:08 +02:00
|
|
|
- pep
|
2021-02-23 09:42:26 +01:00
|
|
|
tasks:
|
|
|
|
- name: Start {{ db|default('postgres', true) }} and es
|
|
|
|
docker_stack:
|
|
|
|
name: 'conductor-{{ infrastructure }}'
|
|
|
|
state: present
|
|
|
|
compose:
|
|
|
|
- "{{ target_path }}/{{ db|default('postgres', true) }}-swarm.yaml"
|
|
|
|
- "{{ target_path }}/elasticsearch-swarm.yaml"
|
|
|
|
when: dry is not defined or not dry|bool
|
|
|
|
|
|
|
|
- name: Waiting for databases
|
|
|
|
pause:
|
2021-05-18 15:10:08 +02:00
|
|
|
seconds: 20
|
2021-02-23 09:42:26 +01:00
|
|
|
when: dry is not defined or not dry|bool
|
|
|
|
|
|
|
|
- name: Start conductor
|
|
|
|
docker_stack:
|
|
|
|
name: "conductor-{{ infrastructure }}"
|
|
|
|
state: present
|
|
|
|
compose:
|
|
|
|
- "{{ target_path }}/conductor-swarm.yaml"
|
|
|
|
when: dry is not defined or not dry|bool
|
2021-05-18 15:10:08 +02:00
|
|
|
|
|
|
|
- name: Start pep
|
|
|
|
docker_stack:
|
|
|
|
name: 'conductor-{{ infrastructure }}'
|
|
|
|
state: present
|
|
|
|
compose:
|
|
|
|
- "{{ target_path }}/pep-swarm.yaml"
|
|
|
|
when: dry is not defined or not dry|bool
|
|
|
|
|
2021-02-23 09:42:26 +01:00
|
|
|
- name: Start workers
|
|
|
|
docker_stack:
|
|
|
|
name: "conductor-{{ infrastructure }}"
|
|
|
|
state: present
|
|
|
|
compose:
|
|
|
|
- "{{ target_path }}/conductor-workers-swarm.yaml"
|
|
|
|
when: dry is not defined or not dry|bool
|