@@ -11,9 +11,7 @@ lighthouse_announced_ipv6: "{{ ansible_default_ipv6.address }}"
11
11
lighthouse_cleanup : false # when set to "true" it will remove the container(s)
12
12
13
13
lighthouse_ports_p2p_tcp : 9000
14
- lighthouse_ports_p2p_tcp_ipv6 : 9002
15
14
lighthouse_ports_p2p_udp : 9000
16
- lighthouse_ports_p2p_udp_ipv6 : 9002
17
15
lighthouse_ports_http_beacon : 5052
18
16
lighthouse_ports_metrics : 5054
19
17
lighthouse_ports_quic : 9001
@@ -34,12 +32,13 @@ lighthouse_container_image: sigp/lighthouse:latest
34
32
lighthouse_container_env : {}
35
33
lighthouse_container_ports :
36
34
- " 127.0.0.1:{{ lighthouse_ports_http_beacon }}:{{ lighthouse_ports_http_beacon }}"
37
- - " {{ lighthouse_ports_p2p_tcp }}:{{ lighthouse_ports_p2p_tcp }}"
38
- - " {{ lighthouse_ports_p2p_udp }}:{{ lighthouse_ports_p2p_udp }}/udp"
35
+ - " 0.0.0.0:{{ lighthouse_ports_p2p_tcp }}:{{ lighthouse_ports_p2p_tcp }}"
36
+ - " 0.0.0.0:{{ lighthouse_ports_p2p_udp }}:{{ lighthouse_ports_p2p_udp }}/udp"
37
+ - " [::]:{{ lighthouse_ports_p2p_tcp }}:{{ lighthouse_ports_p2p_tcp }}"
38
+ - " [::]:{{ lighthouse_ports_p2p_udp }}:{{ lighthouse_ports_p2p_udp }}/udp"
39
39
- " {{ lighthouse_ports_quic }}:{{ lighthouse_ports_quic }}"
40
40
- " {{ lighthouse_ports_quic }}:{{ lighthouse_ports_quic }}/udp"
41
- - " [::]:{{ lighthouse_ports_p2p_tcp_ipv6 }}:{{ lighthouse_ports_p2p_udp_ipv6 }}"
42
- - " [::]:{{ lighthouse_ports_p2p_udp_ipv6 }}:{{ lighthouse_ports_p2p_udp_ipv6 }}/udp"
41
+
43
42
lighthouse_container_volumes :
44
43
- " {{ lighthouse_datadir }}:/data"
45
44
- " {{ lighthouse_auth_jwt_path }}:/execution-auth.jwt:ro"
@@ -54,15 +53,15 @@ lighthouse_container_command:
54
53
- --disable-enr-auto-update
55
54
- --enr-address={{ lighthouse_announced_ip }}
56
55
- --enr-address={{ lighthouse_announced_ipv6 }}
57
- - --enr-tcp6-port={{ lighthouse_ports_p2p_tcp_ipv6 }}
56
+ - --enr-tcp6-port={{ lighthouse_ports_p2p_tcp }}
58
57
- --enr-tcp-port={{ lighthouse_ports_p2p_tcp }}
59
58
- --enr-udp-port={{ lighthouse_ports_p2p_udp }}
60
- - --enr-udp6-port={{ lighthouse_ports_p2p_udp_ipv6 }}
59
+ - --enr-udp6-port={{ lighthouse_ports_p2p_udp }}
61
60
- --listen-address=0.0.0.0
62
61
- --port={{ lighthouse_ports_p2p_tcp }}
63
- - --port6={{ lighthouse_ports_p2p_tcp_ipv6 }}
62
+ - --port6={{ lighthouse_ports_p2p_tcp }}
64
63
- --discovery-port={{ lighthouse_ports_p2p_udp }}
65
- - --discovery-port6={{ lighthouse_ports_p2p_udp_ipv6 }}
64
+ - --discovery-port6={{ lighthouse_ports_p2p_udp }}
66
65
- --http
67
66
- --http-address=0.0.0.0
68
67
- --http-port={{ lighthouse_ports_http_beacon }}
0 commit comments