add config for beacon nodes
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
52b8ae8acf
commit
1b03b4c7fb
|
@ -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 }
|
||||
|
|
Loading…
Reference in New Issue