2021-03-18 04:59:45 +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
|
2021-03-18 04:59:45 +00:00
|
|
|
tasks:
|
2021-04-09 06:18:59 +00:00
|
|
|
- local_action: command ./versioncheck.py
|
|
|
|
changed_when: false
|
2021-03-18 04:59:45 +00:00
|
|
|
|
|
|
|
- name: Configure build nodes
|
|
|
|
become: true
|
|
|
|
hosts:
|
|
|
|
- testing-large-01.aws-eu-central-1a.nimbus.pyrmont
|
|
|
|
roles:
|
|
|
|
- { role: beacon-node-builds, tags: beacon-node-builds }
|
|
|
|
|
|
|
|
- name: Configure network prater
|
|
|
|
become: true
|
|
|
|
# To avoid clashing/duplicate validators.
|
|
|
|
any_errors_fatal: true
|
2021-04-19 18:21:42 +00:00
|
|
|
hosts: 'nimbus.prater'
|
2021-03-18 04:59:45 +00:00
|
|
|
roles:
|
|
|
|
- { role: distribute-validators, tags: [ distribute-validators ] }
|
2021-04-19 18:21:42 +00:00
|
|
|
- { role: get-geth-web3-urls, tags: [ get-geth-web3-urls ] }
|
2021-03-18 04:59:45 +00:00
|
|
|
- { role: infra-role-beacon-node, tags: [ infra-role-beacon-node, beacon-node ] }
|