2023-09-18 12:23:13 +02: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-10-14 11:46:21 +02:00
|
|
|
- name: Configure Waku Bootstrap and Storage Nodes
|
|
|
|
hosts:
|
|
|
|
- boot
|
|
|
|
- store
|
2023-09-08 15:48:13 +02:00
|
|
|
roles:
|
|
|
|
- { role: open-ports, tags: open-ports }
|
|
|
|
- { role: swap-file, tags: swap-file }
|
2023-12-14 10:06:00 +01:00
|
|
|
- { role: certbot, tags: certbot }
|
2023-09-08 15:48:13 +02:00
|
|
|
- { role: nim-waku, tags: nim-waku }
|
2023-09-29 12:26:44 +02: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 }
|