markoburcul d319a1e405 boot-node: add sonda to the host
Referenced issue: https://github.com/status-im/infra-hq/issues/135

Signed-off-by: markoburcul <marko@status.im>
2024-10-29 13:21:11 +01:00

32 lines
1.1 KiB
YAML

---
- name: Verify Ansible versions
hosts: all
tags: always
become: false
run_once: true
gather_facts: false
tasks:
- local_action: command ./roles.py --check
changed_when: false
- name: Configure Waku Storage DB Nodes
serial: '{{ serial|default(1) }}'
hosts: store-db
roles:
- { role: infra-role-open-ports, tags: open-ports }
- { role: infra-role-swap-file, tags: swap-file }
- { role: infra-role-postgres-ha, tags: postgres-ha }
- name: Configure Waku Bootstrap and Storage Nodes
serial: '{{ serial|default(1) }}'
hosts:
- boot
- store
roles:
- { role: infra-role-open-ports, tags: open-ports }
- { role: infra-role-swap-file, tags: swap-file }
- { role: infra-role-certbot, tags: certbot }
- { role: infra-role-nim-waku, tags: nim-waku }
- { role: infra-role-nim-waku-sonda, tags: nim-waku-sonda, when: nim_waku_sonda_enabled }
- { role: infra-role-nginx, tags: nginx }