add config for beacon nodes

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2019-03-25 13:02:20 +01:00
parent 52b8ae8acf
commit 1b03b4c7fb
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 20 additions and 3 deletions

View File

@ -2,10 +2,27 @@
- name: Configure Nimbus master
hosts: nimbus-master
roles:
- origin-cert
- infra-role-eth2-testnet-site
- { role: origin-cert }
- { role: infra-role-eth2-testnet-site }
- { role: infra-role-beacon-node,
beacon_node_network: 'testnet0',
beacon_node_build_flavour: 'rlpx',
beacon_node_total_nodes: 1,
beacon_node_disovery_port: 9000,
beacon_node_listening_port: 9000 }
- { role: infra-role-beacon-node,
beacon_node_network: 'testnet1',
beacon_node_build_flavour: 'rlpx',
beacon_node_total_nodes: 5,
beacon_node_disovery_port: 9100,
beacon_node_listening_port: 9100 }
- name: Configure Nimbus cluster
hosts: nimbus-slaves
roles:
- infra-role-beacon-node
- { role: infra-role-beacon-node,
beacon_node_network: 'testnet1',
beacon_node_build_flavour: 'rlpx',
beacon_node_total_nodes: 10,
beacon_node_disovery_port: 9100,
beacon_node_listening_port: 9100 }