From 9c9b69c623ac7c769af297601a27fbf9630f7a13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 29 Oct 2019 17:28:32 +0100 Subject: [PATCH] update to expose new metrics port MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ansible/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ansible/main.yml b/ansible/main.yml index a510511..5fcf964 100644 --- a/ansible/main.yml +++ b/ansible/main.yml @@ -11,6 +11,7 @@ with_sequence: count=2 vars: beacon_node_network: 'testnet0' + beacon_node_metrics_port : '{{ 9200 - 1 + item|int }}' beacon_node_public_tcp_port: '{{ 9000 - 1 + item|int }}' beacon_node_public_udp_port: '{{ 9000 - 1 + item|int }}' beacon_node_cont_name: 'beacon-node-{{ beacon_node_network}}-{{ item }}' @@ -20,6 +21,7 @@ with_sequence: count=2 vars: beacon_node_network: 'testnet1' + beacon_node_metrics_port : '{{ 9200 - 1 + item|int }}' beacon_node_public_tcp_port: '{{ 9100 - 1 + item|int }}' beacon_node_public_udp_port: '{{ 9100 - 1 + item|int }}' beacon_node_cont_name: 'beacon-node-{{ beacon_node_network}}-{{ item }}' @@ -32,6 +34,7 @@ with_sequence: count=2 vars: beacon_node_network: 'testnet0' + beacon_node_metrics_port : '{{ 9200 - 1 + item|int }}' beacon_node_public_tcp_port: '{{ 9000 - 1 + item|int }}' beacon_node_public_udp_port: '{{ 9000 - 1 + item|int }}' beacon_node_cont_name: 'beacon-node-{{ beacon_node_network}}-{{ item }}' @@ -41,6 +44,7 @@ with_sequence: count=2 vars: beacon_node_network: 'testnet1' + beacon_node_metrics_port : '{{ 9200 - 1 + item|int }}' beacon_node_public_tcp_port: '{{ 9100 - 1 + item|int }}' beacon_node_public_udp_port: '{{ 9100 - 1 + item|int }}' beacon_node_cont_name: 'beacon-node-{{ beacon_node_network}}-{{ item }}'