ansible: setup db hosts first

This commit is contained in:
Anton Iakimov 2024-03-08 16:47:50 +01:00
parent b74deff59f
commit ec103eb5a9
No known key found for this signature in database
GPG Key ID: DEA1FE58DD8BF7FA
1 changed files with 7 additions and 7 deletions

View File

@ -9,6 +9,13 @@
- local_action: command ./versioncheck.py
changed_when: false
- 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 }
- name: Configure Waku Nodes
hosts: node
roles:
@ -17,10 +24,3 @@
- { role: certbot, tags: certbot }
- { role: nim-waku, tags: nim-waku }
- { role: nginx, tags: nginx }
- 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 }