infra-shards/ansible/main.yml

28 lines
768 B
YAML
Raw Normal View History

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
- name: Configure Waku Bootstrap and Storage Nodes
hosts:
- boot
- store
2023-09-08 13:48:13 +00:00
roles:
- { role: open-ports, tags: open-ports }
- { role: swap-file, tags: swap-file }
- { role: certbot, tags: certbot }
2023-09-08 13:48:13 +00:00
- { 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 }