diff options
author | Justin chi <chigang@huawei.com> | 2016-05-04 07:16:20 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@172.30.200.206> | 2016-05-04 07:16:20 +0000 |
commit | 554134d60da77a877f52ab4befcaf17dd297f8fd (patch) | |
tree | 6cebc381d097c967b66238bf530de23faa120990 /deploy/adapters/ansible/roles/ha/templates/haproxy.cfg | |
parent | 2e8b51173b5c85ae2a5f19d803db0b7390fc2819 (diff) | |
parent | 637b3a010deb88b7a892b9bddaf3973ff394a420 (diff) |
Merge "Add Aodh support for Compass"
Diffstat (limited to 'deploy/adapters/ansible/roles/ha/templates/haproxy.cfg')
-rw-r--r-- | deploy/adapters/ansible/roles/ha/templates/haproxy.cfg | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/ha/templates/haproxy.cfg b/deploy/adapters/ansible/roles/ha/templates/haproxy.cfg index 8bc6a17c..222b5561 100644 --- a/deploy/adapters/ansible/roles/ha/templates/haproxy.cfg +++ b/deploy/adapters/ansible/roles/ha/templates/haproxy.cfg @@ -169,6 +169,17 @@ listen proxy-ceilometer_api_cluster server {{ host }} {{ ip }}:8777 weight 1 check inter 2000 rise 2 fall 5 {% endfor %} +listen proxy-aodh_api_cluster + bind {{ internal_vip.ip }}:8042 + bind {{ public_vip.ip }}:8042 + mode tcp + option tcp-check + option tcplog + balance source +{% for host,ip in haproxy_hosts.items() %} + server {{ host }} {{ ip }}:8042 weight 1 check inter 2000 rise 2 fall 5 +{% endfor %} + listen proxy-dashboarad bind {{ public_vip.ip }}:80 mode http |