mirror of
https://github.com/status-im/infra-status.git
synced 2025-01-15 01:34:30 +00:00
30 lines
840 B
YAML
30 lines
840 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 }
|
|
|
|
- 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 }
|