This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
enable ipv6 on some nodes, bump images
- Loading branch information
1 parent
a8b7dd8
commit e619240
Showing
10 changed files
with
170 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 42 additions & 0 deletions
42
ansible/inventories/devnet-12/host_vars/lodestar-geth-1.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
lodestar_container_command: | ||
- beacon | ||
- --dataDir=/data | ||
- --discv5 | ||
- --listenAddress=0.0.0.0 | ||
- --port={{ lodestar_ports_p2p_tcp }} | ||
- --enr.ip={{ lodestar_announced_ip }} | ||
- --enr.tcp={{ lodestar_ports_p2p_tcp }} | ||
- --enr.udp={{ lodestar_ports_p2p_udp }} | ||
- --rest | ||
- --rest.address=0.0.0.0 | ||
- --rest.port={{ lodestar_ports_http_beacon }} | ||
- --jwt-secret=/execution-auth.jwt | ||
- --execution.urls={{ lodestar_execution_engine_endpoint }} | ||
- --metrics | ||
- --metrics.address=0.0.0.0 | ||
- --metrics.port={{ lodestar_ports_metrics }} | ||
|
||
lodestar_container_command_extra_args: | ||
- --paramsFile=/network-config/config.yaml | ||
- --genesisStateFile=/network-config/genesis.ssz | ||
- --bootnodes={{ ethereum_cl_bootnodes | join(',') }} | ||
- --rest.namespace="*" | ||
- --network.connectToDiscv5Bootnodes | ||
- --nat=true | ||
- --listenAddress6=::0 | ||
- --port6={{ lodestar_ports_p2p_udp +1}} | ||
- --discoveryPort6={{ lodestar_ports_p2p_udp +1 }} | ||
- --enr.tcp6={{ lodestar_ports_p2p_tcp +1 }} | ||
- --enr.udp6={{ lodestar_ports_p2p_udp +1 }} | ||
- --checkpointSyncUrl=https://{{ secret_nginx_shared_basic_auth.name }}:{{ secret_nginx_shared_basic_auth.password }}@bn.lodestar-nethermind-1.dencun-devnet-12.ethpandaops.io | ||
|
||
ethereum_node_docker_network_name: shared7 | ||
#docker network create --ipv6 --subnet 2a03:b0c0:3:d0::1a7f:9000/124 shared7 | ||
lodestar_container_ports: | ||
- "127.0.0.1:{{ lodestar_ports_http_beacon }}:{{ lodestar_ports_http_beacon }}" | ||
- "{{ lodestar_ports_p2p_tcp }}:{{ lodestar_ports_p2p_tcp }}" | ||
- "{{ lodestar_ports_p2p_udp }}:{{ lodestar_ports_p2p_udp }}/udp" | ||
- "[::]:{{ lodestar_ports_p2p_tcp+1 }}:{{ lodestar_ports_p2p_tcp+1 }}" | ||
- "[::]:{{ lodestar_ports_p2p_udp+1 }}:{{ lodestar_ports_p2p_udp+1 }}/udp" | ||
lodestar_checkpoint_sync_enabled: true | ||
checkpoint_sync_enabled: true |
2 changes: 1 addition & 1 deletion
2
ansible/inventories/devnet-12/host_vars/nimbus-erigon-1-arm.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
default_ethereum_client_images: | ||
nimbus: statusim/nimbus-eth2:multiarch-v24.1.2 | ||
nimbus: statusim/nimbus-eth2:multiarch-v24.2.0 | ||
erigon: thorax/erigon:2.57.1-arm64 |
19 changes: 0 additions & 19 deletions
19
ansible/inventories/devnet-12/host_vars/prysm-nethermind-1.yaml
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters