From f4eb89f8b08fbc1b0aee49f20cb7a60684c10f44 Mon Sep 17 00:00:00 2001 From: Vladislav Belogrudov Date: Wed, 28 Oct 2015 15:22:25 +0300 Subject: [PATCH] HAProxy does not have murano-api configuration This commit fixes configuration for murano-api HA Change-Id: I6b6f2c266cbb4c8131a949e31094572dad91fc40 Closes-Bug: #1510921 Backport: Liberty --- ansible/roles/haproxy/templates/haproxy.cfg.j2 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ansible/roles/haproxy/templates/haproxy.cfg.j2 b/ansible/roles/haproxy/templates/haproxy.cfg.j2 index b2a0db1c07..3e31edb0e3 100644 --- a/ansible/roles/haproxy/templates/haproxy.cfg.j2 +++ b/ansible/roles/haproxy/templates/haproxy.cfg.j2 @@ -157,3 +157,11 @@ listen swift_api server {{ hostvars[host]['ansible_hostname'] }} {{ hostvars[host]['ansible_' + api_interface]['ipv4']['address'] }}:{{ swift_proxy_server_port }} check inter 2000 rise 2 fall 5 {% endfor %} {% endif %} + +{% if enable_murano | bool %} +listen murano_api + bind {{ kolla_internal_address }}:{{ murano_api_port }} +{% for host in groups['murano-api'] %} + server {{ hostvars[host]['ansible_hostname'] }} {{ hostvars[host]['ansible_' + api_interface]['ipv4']['address'] }}:{{ murano_api_port }} check inter 2000 rise 2 fall 5 +{% endfor %} +{% endif %}