21 lines
577 B
YAML
21 lines
577 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 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 ] }
|