2019-03-21 12:14:11 +00:00
|
|
|
---
|
2019-11-04 14:55:29 +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.'
|
|
|
|
|
2019-03-22 15:50:30 +00:00
|
|
|
- name: Configure Nimbus master
|
2019-11-04 00:04:03 +00:00
|
|
|
hosts:
|
|
|
|
- nimbus-master
|
2019-03-22 15:50:30 +00:00
|
|
|
roles:
|
2020-11-02 17:46:50 +00:00
|
|
|
- { role: origin-certs, tags: [ origin-certs ] }
|
2020-06-10 10:35:30 +00:00
|
|
|
#- { role: nimbus-stats, tags: nimbus-stats }
|
2019-03-21 12:27:16 +00:00
|
|
|
|
2020-08-04 10:45:57 +00:00
|
|
|
- name: Configure shared testnet3
|
2019-11-01 15:37:05 +00:00
|
|
|
hosts:
|
2020-11-02 17:46:50 +00:00
|
|
|
- nimbus-master
|
|
|
|
- nimbus-slaves[0:4]
|
|
|
|
vars:
|
|
|
|
beacon_node_network: 'testnet3'
|
|
|
|
beacon_node_shared_testnet: 'medalla'
|
|
|
|
beacon_node_rpc_port: '11000'
|
|
|
|
beacon_node_metrics_port : '9300'
|
|
|
|
beacon_node_listening_port: '9100'
|
|
|
|
beacon_node_discovery_port: '9100'
|
|
|
|
beacon_node_cont_name: 'beacon-node-{{ beacon_node_network }}'
|
|
|
|
beacon_node_timer_rebuild: true
|
|
|
|
cont_restart: true
|
2020-09-16 10:50:46 +00:00
|
|
|
roles:
|
2020-11-02 17:46:50 +00:00
|
|
|
- { role: infra-role-beacon-node, tags: [ infra-role-beacon-node, beacon-node ] }
|
|
|
|
- { role: network-debug-script, tags: [ network-debug-script ] }
|
2020-06-26 20:37:59 +00:00
|
|
|
|
2020-11-02 17:46:50 +00:00
|
|
|
- name: Configure seared testnet2
|
2020-06-26 20:37:59 +00:00
|
|
|
hosts:
|
2020-11-02 17:46:50 +00:00
|
|
|
- nimbus-slaves[5:8]
|
2020-06-26 20:37:59 +00:00
|
|
|
tags: beacon-node
|
2020-11-02 17:46:50 +00:00
|
|
|
vars:
|
|
|
|
beacon_node_network: 'testnet2'
|
|
|
|
beacon_node_shared_testnet: 'altona'
|
|
|
|
beacon_node_rpc_port: '11000'
|
|
|
|
beacon_node_metrics_port : '9300'
|
|
|
|
beacon_node_listening_port: '9100'
|
|
|
|
beacon_node_discovery_port: '9100'
|
|
|
|
beacon_node_cont_name: 'beacon-node-{{ beacon_node_network }}'
|
|
|
|
beacon_node_timer_rebuild: true
|
|
|
|
cont_restart: true
|
2020-09-16 10:50:46 +00:00
|
|
|
roles:
|
2020-11-02 17:46:50 +00:00
|
|
|
- { role: infra-role-beacon-node, tags: [ infra-role-beacon-node, beacon-node ] }
|
|
|
|
- { role: network-debug-script, tags: [ network-debug-script ] }
|