2020-11-24 12:37:00 +00:00
|
|
|
---
|
2021-05-10 13:29:38 +00:00
|
|
|
- name: Verify Ansible versions
|
2021-04-09 06:18:59 +00:00
|
|
|
hosts: all
|
|
|
|
tags: always
|
2021-05-10 13:29:38 +00:00
|
|
|
become: false
|
|
|
|
run_once: true
|
2021-04-09 06:18:59 +00:00
|
|
|
gather_facts: false
|
2020-11-24 12:37:00 +00:00
|
|
|
tasks:
|
2021-04-09 06:18:59 +00:00
|
|
|
- local_action: command ./versioncheck.py
|
|
|
|
changed_when: false
|
2020-11-24 12:37:00 +00:00
|
|
|
|
|
|
|
- name: Configure geth nodes
|
2021-02-09 19:27:13 +00:00
|
|
|
become: true
|
2020-11-24 15:14:15 +00:00
|
|
|
hosts:
|
|
|
|
- nimbus-geth-goerli
|
|
|
|
- nimbus-geth-mainnet
|
2020-11-24 12:37:00 +00:00
|
|
|
roles:
|
|
|
|
- { role: swap-file, tags: swap-file }
|
|
|
|
- { role: infra-role-geth, tags: infra-role-geth }
|
|
|
|
- { role: infra-role-geth-exporter, tags: infra-role-geth-exporter }
|