prater/pyrmont: add config for REST API port
https://github.com/status-im/infra-role-beacon-node-linux/pull/1 Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
ecdaa70356
commit
e0d70f46f3
|
@ -37,10 +37,11 @@ beacon_node_log_level: DEBUG
|
|||
beacon_node_timer_rebuild: true
|
||||
|
||||
# ports
|
||||
beacon_node_rpc_port: '11000'
|
||||
beacon_node_metrics_port : '9300'
|
||||
beacon_node_listening_port: '9100'
|
||||
beacon_node_discovery_port: '9100'
|
||||
beacon_node_rpc_port: 11000
|
||||
beacon_node_rest_port: 5052
|
||||
beacon_node_metrics_port : 9300
|
||||
beacon_node_listening_port: 9100
|
||||
beacon_node_discovery_port: 9100
|
||||
|
||||
# Peers
|
||||
beacon_node_max_peers: 320
|
||||
|
|
|
@ -49,6 +49,7 @@
|
|||
beacon_node_discovery_port: '{{ 9000 + port_offset }}'
|
||||
beacon_node_listening_port: '{{ 9000 + port_offset }}'
|
||||
beacon_node_metrics_port: '{{ 9200 + port_offset }}'
|
||||
beacon_node_rest_port: '{{ 9300 + port_offset }}'
|
||||
beacon_node_rpc_port: '{{ 9900 + port_offset }}'
|
||||
beacon_node_dist_validators_start: '{{ node.start }}'
|
||||
beacon_node_dist_validators_end: '{{ node.end }}'
|
||||
|
@ -73,6 +74,7 @@
|
|||
beacon_node_discovery_port: '{{ 9000 + port_offset }}'
|
||||
beacon_node_listening_port: '{{ 9000 + port_offset }}'
|
||||
beacon_node_metrics_port: '{{ 9200 + port_offset }}'
|
||||
beacon_node_rest_port: '{{ 9300 + port_offset }}'
|
||||
beacon_node_rpc_port: '{{ 9900 + port_offset }}'
|
||||
beacon_node_dist_validators_start: '{{ node.start }}'
|
||||
beacon_node_dist_validators_end: '{{ node.end }}'
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
beacon_node_discovery_port: '{{ 9000 + port_offset }}'
|
||||
beacon_node_listening_port: '{{ 9000 + port_offset }}'
|
||||
beacon_node_metrics_port: '{{ 9200 + port_offset }}'
|
||||
beacon_node_rest_port: '{{ 9300 + port_offset }}'
|
||||
beacon_node_rpc_port: '{{ 9900 + port_offset }}'
|
||||
beacon_node_dist_validators_start: '{{ validators_layout[hostname][node.name]["start"] | mandatory }}'
|
||||
beacon_node_dist_validators_end: '{{ validators_layout[hostname][node.name]["end"] | mandatory }}'
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
|
||||
- name: infra-role-beacon-node-linux
|
||||
src: git@github.com:status-im/infra-role-beacon-node-linux.git
|
||||
version: bbba401d463840897bc3c16c48cf1b20c1115520
|
||||
version: c327a454ce113a7d5c1432029aadaaf39c6ca83c
|
||||
scm: git
|
||||
|
||||
- name: infra-role-beacon-node-windows
|
||||
|
|
Loading…
Reference in New Issue