enable validator monitoring flags for unstable nodes
Once the next release is out we can drop the `unstable` conditionals. Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
e00443d6e2
commit
c7d86c0990
|
@ -19,6 +19,9 @@ beacon_node_firewall_libp2p_open: '{{ node.get("open_libp2p_ports", true) }}'
|
|||
beacon_node_build_frequency: '*-*-* {{ 12 + port_offset }}:00:00'
|
||||
# Tuning
|
||||
beacon_node_threads: '{{ (node.branch == "testing") | ternary(4, 1) }}'
|
||||
# Monitoring
|
||||
beacon_node_validator_monitor_auto: '{{ node.branch == "unstable" }}'
|
||||
beacon_node_validator_monitor_totals: false
|
||||
# Mainnet validators run on a separate fleet.
|
||||
beacon_node_dist_validators_enabled: false
|
||||
# Bootnodes should subscribe to all subnets
|
||||
|
|
|
@ -16,6 +16,12 @@ beacon_node_firewall_libp2p_open: '{{ node.get("open_libp2p_ports", true) }}'
|
|||
# Tuning
|
||||
beacon_node_max_peers: 300
|
||||
beacon_node_threads: '{{ (node.branch == "testing") | ternary(4, 1) }}'
|
||||
# Monitoring
|
||||
beacon_node_validator_monitor_auto: '{{ node.branch == "unstable" }}'
|
||||
beacon_node_validator_monitor_totals: >-
|
||||
{{ node.branch == "unstable" and
|
||||
node.end is defined and
|
||||
(node.end - node.start) > 64 }}
|
||||
# Builds
|
||||
beacon_node_build_frequency: '{{ node.get("build_freq", "daily") }}'
|
||||
beacon_node_build_start_time: '{{ node.get("build_start", omit) }}'
|
||||
|
|
|
@ -13,6 +13,12 @@ beacon_node_rpc_port: '{{ 9900 + port_offset }}'
|
|||
# Tuning
|
||||
beacon_node_max_peers: 250
|
||||
beacon_node_threads: '{{ (node.branch == "testing") | ternary(4, 1) }}'
|
||||
# Monitoring
|
||||
beacon_node_validator_monitor_auto: '{{ node.branch == "unstable" }}'
|
||||
beacon_node_validator_monitor_totals: >-
|
||||
{{ node.branch == "unstable" and
|
||||
node.end is defined and
|
||||
(node.end - node.start) > 64 }}
|
||||
# Builds
|
||||
beacon_node_build_frequency: '{{ node.build_frequency }}'
|
||||
# Validators from nimbus-private repo
|
||||
|
|
|
@ -46,17 +46,17 @@
|
|||
|
||||
- name: infra-role-beacon-node-linux
|
||||
src: git@github.com:status-im/infra-role-beacon-node-linux.git
|
||||
version: d993d06dc2d05fcad881233a65f8d9cc6c26d844
|
||||
version: 93480d55dfead7ea54e17d8efd4affdd7ec095ee
|
||||
scm: git
|
||||
|
||||
- name: infra-role-beacon-node-windows
|
||||
src: git@github.com:status-im/infra-role-beacon-node-windows.git
|
||||
version: f6dd9dd6440ebf06da859ff6ea04d8d8fd933b48
|
||||
version: bcca6097e137fa75b4f7dd25d6f97f58ace1e160
|
||||
scm: git
|
||||
|
||||
- name: infra-role-beacon-node-macos
|
||||
src: git@github.com:status-im/infra-role-beacon-node-macos.git
|
||||
version: f4fd894c3ed1ebe570320f64106ae56058485e08
|
||||
version: 6613d2a29863c3519b0a547e210fefc5aa58bff0
|
||||
scm: git
|
||||
|
||||
- name: infra-role-nimbus-eth1
|
||||
|
|
Loading…
Reference in New Issue