start ports from 9000 and 9100, not 9001 and 9101
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
3adc241e4d
commit
cd3e4e61cc
|
@ -11,8 +11,8 @@
|
|||
with_sequence: count=2
|
||||
vars:
|
||||
beacon_node_network: 'testnet0'
|
||||
beacon_node_public_tcp_port: '{{ 9000 + item|int }}'
|
||||
beacon_node_public_udp_port: '{{ 9000 + item|int }}'
|
||||
beacon_node_public_tcp_port: '{{ 9000 - 1 + item|int }}'
|
||||
beacon_node_public_udp_port: '{{ 9000 - 1 + item|int }}'
|
||||
beacon_node_cont_name: 'beacon-node-{{ beacon_node_build_flavour }}-{{ beacon_node_network}}-{{ item }}'
|
||||
|
||||
- include_role:
|
||||
|
@ -20,8 +20,8 @@
|
|||
with_sequence: count=2
|
||||
vars:
|
||||
beacon_node_network: 'testnet1'
|
||||
beacon_node_public_tcp_port: '{{ 9100 + item|int }}'
|
||||
beacon_node_public_udp_port: '{{ 9100 + item|int }}'
|
||||
beacon_node_public_tcp_port: '{{ 9100 - 1 + item|int }}'
|
||||
beacon_node_public_udp_port: '{{ 9100 - 1 + item|int }}'
|
||||
beacon_node_cont_name: 'beacon-node-{{ beacon_node_build_flavour }}-{{ beacon_node_network}}-{{ item }}'
|
||||
|
||||
- name: Configure Nimbus cluster
|
||||
|
@ -32,8 +32,8 @@
|
|||
with_sequence: count=2
|
||||
vars:
|
||||
beacon_node_network: 'testnet0'
|
||||
beacon_node_public_tcp_port: '{{ 9000 + item|int }}'
|
||||
beacon_node_public_udp_port: '{{ 9000 + item|int }}'
|
||||
beacon_node_public_tcp_port: '{{ 9000 - 1 + item|int }}'
|
||||
beacon_node_public_udp_port: '{{ 9000 - 1 + item|int }}'
|
||||
beacon_node_cont_name: 'beacon-node-{{ beacon_node_build_flavour }}-{{ beacon_node_network}}-{{ item }}'
|
||||
|
||||
- include_role:
|
||||
|
@ -41,6 +41,6 @@
|
|||
with_sequence: count=2
|
||||
vars:
|
||||
beacon_node_network: 'testnet1'
|
||||
beacon_node_public_tcp_port: '{{ 9100 + item|int }}'
|
||||
beacon_node_public_udp_port: '{{ 9100 + item|int }}'
|
||||
beacon_node_public_tcp_port: '{{ 9100 - 1 + item|int }}'
|
||||
beacon_node_public_udp_port: '{{ 9100 - 1 + item|int }}'
|
||||
beacon_node_cont_name: 'beacon-node-{{ beacon_node_build_flavour }}-{{ beacon_node_network}}-{{ item }}'
|
||||
|
|
Loading…
Reference in New Issue