2020-11-17 12:40:13 +00:00
|
|
|
---
|
|
|
|
- name: Pre-playbook checks
|
|
|
|
hosts: localhost
|
|
|
|
tasks:
|
|
|
|
- name: 'Verify Ansible version is 2.8 or newer'
|
|
|
|
assert:
|
|
|
|
that: 'ansible_version.full is version_compare("2.8", ">=")'
|
|
|
|
msg: 'Your Ansible version is lower than 2.8. Upgrade it.'
|
|
|
|
|
2020-11-20 15:16:03 +00:00
|
|
|
- name: Configure build nodes
|
|
|
|
hosts:
|
2021-01-18 18:53:52 +00:00
|
|
|
- testing-large-01.aws-eu-central-1a.nimbus.pyrmont
|
|
|
|
- testing-small-01.aws-eu-central-1a.nimbus.pyrmont
|
2020-11-20 15:16:03 +00:00
|
|
|
roles:
|
|
|
|
- { role: beacon-node-builds, tags: beacon-node-builds }
|
|
|
|
|
2020-11-20 14:34:09 +00:00
|
|
|
- name: Configure network pyrmont
|
|
|
|
hosts:
|
2021-01-18 15:32:42 +00:00
|
|
|
- nimbus-pyrmont-stable
|
|
|
|
- nimbus-pyrmont-testing
|
|
|
|
- nimbus-pyrmont-unstable
|
|
|
|
- nimbus-pyrmont-unstable-libp2p
|
2020-12-04 12:05:31 +00:00
|
|
|
pre_tasks:
|
|
|
|
- name: Discover Goerli Geth WebSocket endpoint
|
|
|
|
tags: [ infra-role-beacon-node, beacon-node ]
|
|
|
|
uri:
|
|
|
|
url: '{{ consul_catalog_url }}/service/geth-goerli-ws'
|
|
|
|
register: geth_service
|
|
|
|
|
|
|
|
- name: Extract Goerli Geth WebSocket URL
|
|
|
|
tags: [ infra-role-beacon-node, beacon-node ]
|
|
|
|
set_fact:
|
|
|
|
beacon_node_web3_url: 'ws://{{ geth_service.json[0].ServiceAddress }}:{{ geth_service.json[0].ServicePort }}'
|
2020-11-17 12:40:13 +00:00
|
|
|
roles:
|
|
|
|
- { role: distribute-validators, tags: [ distribute-validators ] }
|
|
|
|
- { role: infra-role-beacon-node, tags: [ infra-role-beacon-node, beacon-node ] }
|