You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ ethereumjs_container_ports_ipv4 + ethereumjs_container_ports_ipv6 if ethereumjs_ipv6_enabled else [] }}
29
+
{{ ethereumjs_container_ports_ipv4 + (ethereumjs_container_ports_ipv6 if ethereumjs_ipv6_enabled and ansible_default_ipv6.address is defined else []) }}
# - --extIP={{ ethereumjs_announced_ipv6 }} # not supported
52
52
53
53
ethereumjs_container_command: >-
54
-
{{ ethereumjs_container_command_default + ethereumjs_container_command_v6 if ethereumjs_ipv6_enabled else [] }}
54
+
{{ ethereumjs_container_command_default + (ethereumjs_container_command_v6 if ethereumjs_ipv6_enabled and ansible_default_ipv6.address is defined else []) }}
{{ lighthouse_container_ports_ipv4 + lighthouse_container_ports_ipv6 if lighthouse_ipv6_enabled else [] }}
47
+
{{ lighthouse_container_ports_ipv4 + (lighthouse_container_ports_ipv6 if lighthouse_ipv6_enabled and ansible_default_ipv6.address is defined else []) }}
{{ lighthouse_container_command_default + lighthouse_container_command_v6 if lighthouse_ipv6_enabled else [] }}
89
+
{{ lighthouse_container_command_default + (lighthouse_container_command_v6 if lighthouse_ipv6_enabled and ansible_default_ipv6.address is defined else []) }}
{{ lodestar_container_ports_ipv4 + lodestar_container_ports_ipv6 if lodestar_ipv6_enabled else [] }}
44
+
{{ lodestar_container_ports_ipv4 + (lodestar_container_ports_ipv6 if lodestar_ipv6_enabled and ansible_default_ipv6.address is defined else []) }}
45
45
46
46
lodestar_container_volumes:
47
47
- "{{ lodestar_datadir }}:/data"
@@ -76,7 +76,7 @@ lodestar_container_command_v6:
76
76
- --enr.udp6={{ lodestar_ports_p2p_udp_ipv6 }}
77
77
78
78
lodestar_container_command: >-
79
-
{{ lodestar_container_command_default + lodestar_container_command_v6 if lodestar_ipv6_enabled else [] }}
79
+
{{ lodestar_container_command_default + (lodestar_container_command_v6 if lodestar_ipv6_enabled and ansible_default_ipv6.address is defined else []) }}
{{ nethermind_container_ports_ipv4 + nethermind_container_ports_ipv6 if nethermind_ipv6_enabled else [] }}
30
+
{{ nethermind_container_ports_ipv4 + (nethermind_container_ports_ipv6 if nethermind_ipv6_enabled and ansible_default_ipv6.address is defined else []) }}
# - --Network.ExternalIp={{ nethermind_announced_ipv6 }} # not yet supported https://github.com/NethermindEth/nethermind/issues/6822#issuecomment-1993851323
61
61
62
62
nethermind_container_command: >-
63
-
{{ nethermind_container_command_default + nethermind_container_command_v6 if nethermind_ipv6_enabled else [] }}
63
+
{{ nethermind_container_command_default + (nethermind_container_command_v6 if nethermind_ipv6_enabled and ansible_default_ipv6.address is defined else []) }}
0 commit comments