Fix a typo

This commit is contained in:
Zahary Karadjov 2019-03-28 21:01:05 +02:00
parent 6de8fc678b
commit 921fd1d81f
3 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ beacon_node_total_nodes: 1
beacon_node_cont_tag: '{{ beacon_node_network }}-{{ beacon_node_build_flavour }}'
beacon_node_cont_image: 'statusteam/nimbus_beacon_node:{{ beacon_node_cont_tag }}'
beacon_node_disovery_port: 9000
beacon_node_discovery_port: 9000
beacon_node_listening_port: 9000
# general container management

View File

@ -20,14 +20,14 @@
com.centurylinklabs.watchtower.enable: 'true'
ports:
- '{{ public_tcp_port }}:{{ beacon_node_listening_port }}'
- '{{ public_udp_port }}:{{ beacon_node_disovery_port }}/udp'
- '{{ public_udp_port }}:{{ beacon_node_discovery_port }}/udp'
command: |
{% if beacon_node_verbose %}
--logLevel=DEBUG
{% endif %}
--network={{ beacon_node_network }}
--tcpPort={{ beacon_node_listening_port }}
--udpPort={{ beacon_node_disovery_port }}
--udpPort={{ beacon_node_discovery_port }}
volumes:
- '/docker/{{ container_name }}/data:/root/.cache/nimbus'

View File

@ -2,7 +2,7 @@
- include_tasks: beacon_node.yml
vars:
public_tcp_port: '{{ beacon_node_listening_port + loop_index }}'
public_udp_port: '{{ beacon_node_disovery_port + loop_index }}'
public_udp_port: '{{ beacon_node_discovery_port + loop_index }}'
container_name: 'beacon-node-{{ beacon_node_build_flavour }}-{{ beacon_node_network}}-{{loop_index }}'
index: '{{ loop_index }}'
loop: '{{ range(0, beacon_node_total_nodes) | list }}'