2023-09-18 10:23:13 +00:00
|
|
|
---
|
|
|
|
- name: Verify Ansible versions
|
|
|
|
hosts: all
|
|
|
|
tags: always
|
|
|
|
become: false
|
|
|
|
run_once: true
|
|
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
|
|
- local_action: command ./versioncheck.py
|
|
|
|
changed_when: false
|
|
|
|
|
2023-09-08 13:48:13 +00:00
|
|
|
- name: Configure Waku Bootstrap Nodes
|
2023-09-18 10:23:13 +00:00
|
|
|
hosts: boot
|
|
|
|
roles:
|
|
|
|
- { role: open-ports, tags: open-ports }
|
|
|
|
- { role: swap-file, tags: swap-file }
|
|
|
|
- { role: nim-waku, tags: nim-waku }
|
2023-09-08 13:48:13 +00:00
|
|
|
|
|
|
|
- name: Configure Waku Storage Nodes
|
|
|
|
hosts: store
|
|
|
|
roles:
|
|
|
|
- { role: open-ports, tags: open-ports }
|
|
|
|
- { role: swap-file, tags: swap-file }
|
|
|
|
- { role: nim-waku, tags: nim-waku }
|
2023-09-29 10:26:44 +00:00
|
|
|
|
|
|
|
- name: Configure Waku Storage DB Nodes
|
|
|
|
hosts: store-db
|
|
|
|
roles:
|
|
|
|
- { role: open-ports, tags: open-ports }
|
|
|
|
- { role: swap-file, tags: swap-file }
|
|
|
|
- { role: infra-role-postgres-ha, tags: postgres-ha }
|