infra-shards/ansible/main.yml

31 lines
895 B
YAML

---
- 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
serial: '{{ serial|default(1) }}'
hosts:
- boot
- store
roles:
- { role: open-ports, tags: open-ports }
- { role: swap-file, tags: swap-file }
- { role: certbot, tags: certbot }
- { role: nim-waku, tags: nim-waku }
- { role: nginx, tags: nginx }
- name: Configure Waku Storage DB Nodes
serial: '{{ serial|default(1) }}'
hosts: store-db
roles:
- { role: open-ports, tags: open-ports }
- { role: swap-file, tags: swap-file }
- { role: infra-role-postgres-ha, tags: postgres-ha }