aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/odl_cluster/templates/haproxy-odl.cfg
diff options
context:
space:
mode:
authorchenshuai@huawei.com <chenshuai@huawei.com>2016-01-27 18:15:40 +0800
committershuai chen <chenshuai@huawei.com>2016-01-27 13:46:42 +0000
commitdf4c8756faed62a0bf955f87664b8e99b1b585f1 (patch)
tree35ef62b40450c71ff4cf66ca07af39c4f55dbaae /deploy/adapters/ansible/roles/odl_cluster/templates/haproxy-odl.cfg
parentb3f7107c54fe9ed9fbb38b6abba65dde5f76670d (diff)
bugfix: haproxy for odl
JIRA: COMPASS-288 Change-Id: Ifd5ce06237570bbc524958854a4859515cc098b0 Signed-off-by: chenshuai@huawei.com <chenshuai@huawei.com> (cherry picked from commit 9d9b4c1aaaee795e93b07331645ed8589152d03e)
Diffstat (limited to 'deploy/adapters/ansible/roles/odl_cluster/templates/haproxy-odl.cfg')
-rwxr-xr-xdeploy/adapters/ansible/roles/odl_cluster/templates/haproxy-odl.cfg24
1 files changed, 24 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/odl_cluster/templates/haproxy-odl.cfg b/deploy/adapters/ansible/roles/odl_cluster/templates/haproxy-odl.cfg
new file mode 100755
index 00000000..1f3bc9ed
--- /dev/null
+++ b/deploy/adapters/ansible/roles/odl_cluster/templates/haproxy-odl.cfg
@@ -0,0 +1,24 @@
+listen odl-rest-api-1
+ bind {{ internal_vip.ip }}:8080
+ bind {{ public_vip.ip }}:8080
+ mode http
+ balance source
+ option httplog
+ option nolinger
+ timeout client 3m
+ timeout server 3m
+{% for host,ip in haproxy_hosts.items() %}
+ server {{ host }} {{ ip }}:8080 weight 1 check inter 2000 rise 2 fall 3
+{% endfor %}
+
+listen odl-rest-api-2
+ bind {{ internal_vip.ip }}:8181
+ bind {{ public_vip.ip }}:8181
+ mode http
+ balance source
+ option httplog
+ timeout client 3m
+ timeout server 3m
+{% for host,ip in haproxy_hosts.items() %}
+ server {{ host }} {{ ip }}:8181 weight 1 check inter 2000 rise 2 fall 3
+{% endfor %}