2019-02-13 22:45:53 +00:00
|
|
|
---
|
2019-03-22 01:38:48 +00:00
|
|
|
beacon_node_network: 'testnet0'
|
2019-04-23 17:35:05 +00:00
|
|
|
beacon_node_log_level: INFO
|
2019-03-21 21:08:55 +00:00
|
|
|
|
2019-03-23 08:57:42 +00:00
|
|
|
# Image source: https://github.com/status-im/nimbus/tree/master/docker/beacon_node
|
2019-06-21 14:44:26 +00:00
|
|
|
beacon_node_cont_tag: '{{ beacon_node_network }}'
|
2019-03-23 08:57:42 +00:00
|
|
|
beacon_node_cont_image: 'statusteam/nimbus_beacon_node:{{ beacon_node_cont_tag }}'
|
2019-06-21 14:44:26 +00:00
|
|
|
beacon_node_cont_name: 'beacon-node-{{ beacon_node_network}}'
|
2020-02-10 13:12:08 +00:00
|
|
|
beacon_node_cont_vol: '/docker/{{ beacon_node_cont_name }}'
|
2019-03-23 08:57:42 +00:00
|
|
|
|
2020-02-10 13:12:08 +00:00
|
|
|
# connectivity settings
|
2019-03-28 19:01:05 +00:00
|
|
|
beacon_node_discovery_port: 9000
|
2019-03-21 21:08:55 +00:00
|
|
|
beacon_node_listening_port: 9000
|
2019-11-01 15:05:02 +00:00
|
|
|
beacon_node_public_address: '{{ ansible_host }}'
|
2019-05-09 16:07:53 +00:00
|
|
|
|
2019-10-29 16:27:56 +00:00
|
|
|
# metrics
|
|
|
|
beacon_node_metrics_port: 9200
|
|
|
|
|
2020-03-23 18:26:02 +00:00
|
|
|
# rpc / administrative
|
|
|
|
beacon_node_rpc_port: 9900
|
2020-03-23 16:55:20 +00:00
|
|
|
|
2020-03-26 13:13:23 +00:00
|
|
|
# resource limits, mem in MB
|
|
|
|
beacon_node_cpu_limit: 0.60
|
|
|
|
beacon_node_mem_limit: '{{ (ansible_memtotal_mb * 0.6) | int }}'
|
|
|
|
beacon_node_cpu_reserve: 0.20
|
|
|
|
beacon_node_mem_reserve: '{{ (ansible_memtotal_mb * 0.2) | int }}'
|
|
|
|
|
2020-03-26 15:12:48 +00:00
|
|
|
# container restart policy
|
|
|
|
beacon_node_restart_ondition: 'on-failure'
|
|
|
|
beacon_node_restart_max_attempts: 3
|
|
|
|
beacon_node_restart_delay_sec: 10
|
|
|
|
beacon_node_restart_window_sec: 120
|
|
|
|
|
2019-03-23 09:30:29 +00:00
|
|
|
# general container management
|
2020-03-26 17:45:15 +00:00
|
|
|
compose_recreate: false
|
|
|
|
compose_restart: false
|
|
|
|
compose_destroy: false
|