From 63cb7a2671e001d0a5c96949bf4ead767af941a6 Mon Sep 17 00:00:00 2001 From: Eric Morino Date: Mon, 3 Apr 2023 16:50:26 +0200 Subject: [PATCH] change variable in templabe by etcd_listen_ip --- etcd/templates/etcd.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etcd/templates/etcd.j2 b/etcd/templates/etcd.j2 index 882b5060..f6d886f8 100644 --- a/etcd/templates/etcd.j2 +++ b/etcd/templates/etcd.j2 @@ -1,7 +1,7 @@ ETCD_NAME="{{ etcd_local_name }}" ETCD_DATA_DIR="{{ etcd_datadir }}" ETCD_LOG_OUTPUTS="stdout" -ETCD_LISTEN_PEER_URLS="http://{{ etcd_peer_hosts }}:{{ etcd_peer_port }}" +ETCD_LISTEN_PEER_URLS="http://{{ etcd_listen_ip }}:{{ etcd_peer_port }}" ETCD_LISTEN_CLIENT_URLS="http://localhost:{{ etcd_client_port }},http://{{ etcd_listen_ip }}:{{ etcd_client_port }}" ETCD_INITIAL_ADVERTISE_PEER_URLS="http://{{ etcd_listen_ip }}:{{ etcd_peer_port }}" ETCD_INITIAL_CLUSTER="{{ etcd_initial_cluster }},"