2020-11-17 13:40:13 +01:00
|
|
|
---
|
2021-04-09 08:18:59 +02:00
|
|
|
- name: 'Verify Ansible versions'
|
|
|
|
hosts: all
|
|
|
|
run_once: true
|
|
|
|
connection: local
|
|
|
|
tags: always
|
|
|
|
gather_facts: false
|
2020-11-17 13:40:13 +01:00
|
|
|
tasks:
|
2021-04-09 08:18:59 +02:00
|
|
|
- local_action: command ./versioncheck.py
|
|
|
|
changed_when: false
|
2020-11-17 13:40:13 +01:00
|
|
|
|
2020-11-20 16:16:03 +01:00
|
|
|
- name: Configure build nodes
|
2021-02-09 20:27:13 +01:00
|
|
|
become: true
|
2020-11-20 16:16:03 +01:00
|
|
|
hosts:
|
2021-01-18 19:53:52 +01:00
|
|
|
- testing-large-01.aws-eu-central-1a.nimbus.pyrmont
|
|
|
|
- testing-small-01.aws-eu-central-1a.nimbus.pyrmont
|
2020-11-20 16:16:03 +01:00
|
|
|
roles:
|
|
|
|
- { role: beacon-node-builds, tags: beacon-node-builds }
|
|
|
|
|
2020-11-20 15:34:09 +01:00
|
|
|
- name: Configure network pyrmont
|
2021-02-09 20:27:13 +01:00
|
|
|
become: true
|
2021-02-22 15:48:51 +01:00
|
|
|
# To avoid clashing/duplicate validators.
|
|
|
|
any_errors_fatal: true
|
2021-04-19 20:21:42 +02:00
|
|
|
hosts: 'nimbus.pyrmont'
|
2020-11-17 13:40:13 +01:00
|
|
|
roles:
|
|
|
|
- { role: distribute-validators, tags: [ distribute-validators ] }
|
2021-04-19 20:21:42 +02:00
|
|
|
- { role: get-geth-web3-urls, tags: [ get-geth-web3-urls ] }
|
2020-11-17 13:40:13 +01:00
|
|
|
- { role: infra-role-beacon-node, tags: [ infra-role-beacon-node, beacon-node ] }
|