sepolia&eth1: bump nimbus-eth1 requirements and update flags

This commit is contained in:
Anton Iakimov 2024-02-09 12:03:43 +01:00
parent e2a119a673
commit 5f4bf2b90f
No known key found for this signature in database
GPG Key ID: 9BA162EE5961666D
3 changed files with 7 additions and 13 deletions

View File

@ -15,10 +15,10 @@ rocketpool_eth2_rpc_port: 59190
# Eth1 Sync
# TODO query Consul for these
rocketpool_eth1_exec_layer_jwtsecret: '{{ nimbus_eth1_jwt_secret }}'
rocketpool_eth1_exec_layer_authrpc_url: 'http://localhost:{{ nimbus_eth1_engine_ws_port }}'
rocketpool_eth1_exec_layer_rpc_url: 'http://localhost:{{ nimbus_eth1_rpc_port }}'
rocketpool_eth1_exec_layer_ws_url: 'ws://localhost:{{ nimbus_eth1_ws_port }}'
rocketpool_eth1_archive_url: 'http://localhost:{{ nimbus_eth1_rpc_port }}'
rocketpool_eth1_exec_layer_authrpc_url: 'http://localhost:{{ nimbus_eth1_http_port }}'
rocketpool_eth1_exec_layer_rpc_url: 'http://localhost:{{ nimbus_eth1_http_port }}'
rocketpool_eth1_exec_layer_ws_url: 'ws://localhost:{{ nimbus_eth1_http_port }}'
rocketpool_eth1_archive_url: 'http://localhost:{{ nimbus_eth1_http_port }}'
# Eth1 Wallet
rocketpool_password: '{{lookup("passwordstore", "services/Rocketpool/test/Eth1/pass")}}'
rocketpool_wallet: '{{lookup("passwordstore", "services/Rocketpool/test/Eth1/wallet")}}'
@ -31,9 +31,6 @@ nimbus_eth1_network: 'goerli'
nimbus_eth1_max_peers: 160
nimbus_eth1_log_level: 'DEBUG'
# Ports
nimbus_eth1_ws_port: 8546
nimbus_eth1_rpc_port: 8545
nimbus_eth1_engine_ws_port: 8551
nimbus_eth1_metrics_port: 9093
nimbus_eth1_metrics_address: '0.0.0.0'
# API secert

View File

@ -65,7 +65,7 @@
- name: infra-role-nimbus-eth1
src: git@github.com:status-im/infra-role-nimbus-eth1.git
version: 6b626f0852ecd12626d7cbd2fe9cb94102e88f65
version: f9ed9de88388285fb307bba98ba88e61d52c3e8e
scm: git
- name: infra-role-nimbus-fluffy

View File

@ -8,12 +8,9 @@ nimbus_eth1_log_level: 'DEBUG'
nimbus_eth1_metrics_address: '0.0.0.0'
# Kinda hacky way to just add this as 5th node.
nimbus_eth1_rpc_enabled: true
nimbus_eth1_rpc_port: '{{ 8545 + idx|int + 22 }}'
nimbus_eth1_http_port: '{{ 8545 + idx|int + 22 }}'
nimbus_eth1_ws_enabled: true
nimbus_eth1_ws_port: '{{ 8646 + idx|int + 22 }}'
nimbus_eth1_engine_ws_enabled: true
nimbus_eth1_engine_ws_port: '{{ 8551 + idx|int + 22 }}'
nimbus_eth1_graphql_port: '{{ 8848 + idx|int + 22 }}'
nimbus_eth1_jwt_secret: '{{lookup("bitwarden", "nimbus/jwt-token")}}'
# Beacon Nodes -----------------------------------------------------------------
@ -29,7 +26,7 @@ beacon_node_build_frequency: 'daily'
beacon_node_validator_monitor_auto: true
beacon_node_validator_monitor_details: true
# Execution layer Enginer API
beacon_node_exec_layer_urls: ['ws://localhost:{{ nimbus_eth1_engine_ws_port }}']
beacon_node_exec_layer_urls: ['ws://localhost:{{ nimbus_eth1_http_port }}']
beacon_node_exec_layer_jwt_secret: '{{ nimbus_eth1_jwt_secret }}'
# Validators from nimbus-private repo¬
beacon_node_dist_validators_enabled: '{{ node.start is defined and node.end is defined }}'