infra-nimbus/ansible/pyrmont.yml

29 lines
828 B
YAML
Raw Normal View History

---
- 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 build nodes
become: true
hosts:
- testing-large-01.aws-eu-central-1a.nimbus.pyrmont
- testing-small-01.aws-eu-central-1a.nimbus.pyrmont
roles:
- { role: beacon-node-builds, tags: beacon-node-builds }
- name: Configure network pyrmont
become: true
# To avoid clashing/duplicate validators.
any_errors_fatal: true
hosts: 'nimbus.pyrmont'
roles:
- { role: distribute-validators, tags: [ distribute-validators ] }
- { role: get-geth-web3-urls, tags: [ get-geth-web3-urls ] }
- { role: infra-role-beacon-node, tags: [ infra-role-beacon-node, beacon-node ] }