mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-10 05:45:51 +00:00
Jakub Sokołowski
5d36d3ad3e
https://github.com/status-im/infra-hq/issues/69 https://github.com/status-im/infra-role-bootstrap-linux/commit/92d8923b https://github.com/status-im/infra-role-wireguard/commit/8394639e Signed-off-by: Jakub Sokołowski <jakub@status.im>
22 lines
568 B
YAML
22 lines
568 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 geth nodes
|
|
become: true
|
|
hosts:
|
|
- nimbus-geth-goerli
|
|
- nimbus-geth-mainnet
|
|
roles:
|
|
- { role: swap-file, tags: swap-file }
|
|
- { role: open-ports, tags: open-ports }
|
|
- { role: infra-role-geth, tags: infra-role-geth }
|
|
- { role: infra-role-geth-exporter, tags: infra-role-geth-exporter }
|