infra-nimbus/ansible/main.yml

30 lines
988 B
YAML
Raw Normal View History

---
- name: Configure Nimbus master
hosts: nimbus-master
roles:
- { role: origin-cert }
2019-03-28 20:22:10 +00:00
# - { role: infra-role-eth2-testnet-site }
- { role: nimbus-stats, tags: nimbus-stats }
- { role: infra-role-beacon-node,
beacon_node_network: 'testnet0',
beacon_node_build_flavour: 'rlpx',
2019-03-26 18:47:27 +00:00
beacon_node_total_nodes: 2,
2019-03-28 20:22:10 +00:00
beacon_node_discovery_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,
2019-03-28 20:22:10 +00:00
beacon_node_discovery_port: 9100,
beacon_node_listening_port: 9100 }
- name: Configure Nimbus cluster
hosts: nimbus-slaves
roles:
- { role: infra-role-beacon-node,
beacon_node_network: 'testnet1',
beacon_node_build_flavour: 'rlpx',
beacon_node_total_nodes: 10,
2019-03-28 20:22:10 +00:00
beacon_node_discovery_port: 9100,
beacon_node_listening_port: 9100 }