From d31318470bcfb236e2ed9356e0e61f34fe85cc80 Mon Sep 17 00:00:00 2001 From: Harry Huang Date: Mon, 28 Nov 2016 17:25:35 +0800 Subject: add congress support JIRA: COMPASS-367 add congress support in openstack_mitaka and openstack_newton_xenial Change-Id: I3aa19cb54081ad2300964955b899c1b56a875b25 Signed-off-by: Harry Huang --- .../openstack_newton_xenial/roles/ha/templates/haproxy.cfg | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'deploy/adapters/ansible/openstack_newton_xenial/roles/ha/templates/haproxy.cfg') diff --git a/deploy/adapters/ansible/openstack_newton_xenial/roles/ha/templates/haproxy.cfg b/deploy/adapters/ansible/openstack_newton_xenial/roles/ha/templates/haproxy.cfg index c0a0747d..5fbcc9d9 100644 --- a/deploy/adapters/ansible/openstack_newton_xenial/roles/ha/templates/haproxy.cfg +++ b/deploy/adapters/ansible/openstack_newton_xenial/roles/ha/templates/haproxy.cfg @@ -190,6 +190,17 @@ listen proxy-aodh_api_cluster server {{ host }} {{ ip }}:8042 weight 1 check inter 2000 rise 2 fall 5 {% endfor %} +listen proxy-congress_api_cluster + bind {{ internal_vip.ip }}:1789 + bind {{ public_vip.ip }}:1789 + mode tcp + option tcp-check + option tcplog + balance source +{% for host,ip in haproxy_hosts.items() %} + server {{ host }} {{ ip }}:1789 weight 1 check inter 2000 rise 2 fall 5 +{% endfor %} + listen proxy-dashboarad bind {{ public_vip.ip }}:80 mode http -- cgit 1.2.3-korg