mirror of
https://github.com/status-im/infra-nimbus.git
synced 2025-01-30 23:47:11 +00:00
Jakub Sokołowski
97db7ea804
https://github.com/status-im/infra-nimbus/issues/53 Signed-off-by: Jakub Sokołowski <jakub@status.im>
21 lines
583 B
YAML
21 lines
583 B
YAML
---
|
|
- name: 'Verify Ansible versions'
|
|
hosts: all
|
|
run_once: true
|
|
connection: local
|
|
tags: always
|
|
gather_facts: false
|
|
tasks:
|
|
- local_action: command ./versioncheck.py
|
|
changed_when: false
|
|
|
|
- name: Configure rayonism node
|
|
become: true
|
|
# To avoid clashing/duplicate validators.
|
|
any_errors_fatal: true
|
|
hosts: 'nimbus.rayonism'
|
|
roles:
|
|
- { role: infra-role-geth, tags: [ infra-role-geth ] }
|
|
- { role: distribute-validators, tags: [ distribute-validators ] }
|
|
- { role: infra-role-beacon-node, tags: [ infra-role-beacon-node, beacon-node ] }
|