infra-nimbus/ansible/openeth.yml
Jakub Sokołowski c0ab15c34f
mainnet.openeth: deploy OpenEthereum node to the host
We need some variety and redundancy in how we sync Eth1:
https://github.com/status-im/infra-nimbus/issues/80

Signed-off-by: Jakub Sokołowski <jakub@status.im>
2022-02-21 17:26:33 +01:00

19 lines
418 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 OpenEthereum nodes
become: true
hosts:
- nimbus-openeth-mainnet
roles:
- { role: open-ports, tags: open-ports }
- { role: infra-role-openethereum, tags: openethereum }