2021-04-29 12:34:39 +00:00
|
|
|
---
|
2021-05-10 13:29:38 +00:00
|
|
|
- name: Verify Ansible versions
|
2021-04-29 12:34:39 +00:00
|
|
|
hosts: all
|
|
|
|
tags: always
|
2021-05-10 13:29:38 +00:00
|
|
|
become: false
|
|
|
|
run_once: true
|
2021-04-29 12:34:39 +00:00
|
|
|
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:
|
2021-04-29 13:11:52 +00:00
|
|
|
- { 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 ] }
|