2023-10-10 10:12:43 +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
|
|
|
|
|
|
|
|
- name: Configure Waku Nodes
|
2023-10-10 13:04:36 +00:00
|
|
|
hosts: node
|
2023-10-10 10:12:43 +00:00
|
|
|
roles:
|
|
|
|
- { role: open-ports, tags: open-ports }
|
|
|
|
- { role: swap-file, tags: swap-file }
|
|
|
|
- { role: certbot, tags: certbot }
|
|
|
|
- { role: nim-waku, tags: nim-waku }
|
2023-10-10 13:04:36 +00:00
|
|
|
|
|
|
|
- name: Configure Waku Storage DB Nodes
|
|
|
|
hosts: node-db
|
|
|
|
roles:
|
|
|
|
- { role: open-ports, tags: open-ports }
|
|
|
|
- { role: swap-file, tags: swap-file }
|
|
|
|
- { role: infra-role-postgres-ha, tags: postgres-ha }
|