aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/open-contrail/templates/provision/haproxy-contrail-cfg.j2
diff options
context:
space:
mode:
authorchenshuai@huawei.com <chenshuai@huawei.com>2016-01-21 12:29:22 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-01-21 12:29:22 +0000
commitbb7a36cbac02a1345e61b29f83cadc6434274249 (patch)
treeaf4dc8da8e028d01b710fb8034dc1c9fb8efedc6 /deploy/adapters/ansible/roles/open-contrail/templates/provision/haproxy-contrail-cfg.j2
parent34a1302918127f0cc08b2d005dd42ac373f253ef (diff)
parent6c48d465b98f2255d5374903df8c73dbc4e9adaf (diff)
Merge "bugfix: workaround for opencontrail" into stable/brahmaputra
Diffstat (limited to 'deploy/adapters/ansible/roles/open-contrail/templates/provision/haproxy-contrail-cfg.j2')
-rwxr-xr-xdeploy/adapters/ansible/roles/open-contrail/templates/provision/haproxy-contrail-cfg.j26
1 files changed, 3 insertions, 3 deletions
diff --git a/deploy/adapters/ansible/roles/open-contrail/templates/provision/haproxy-contrail-cfg.j2 b/deploy/adapters/ansible/roles/open-contrail/templates/provision/haproxy-contrail-cfg.j2
index 435a4f5c..01196369 100755
--- a/deploy/adapters/ansible/roles/open-contrail/templates/provision/haproxy-contrail-cfg.j2
+++ b/deploy/adapters/ansible/roles/open-contrail/templates/provision/haproxy-contrail-cfg.j2
@@ -29,7 +29,7 @@ listen contrail-api
timeout client 3m
timeout server 3m
{% for host,ip in haproxy_hosts.items() %}
- server {{ host }} {{ ip }}:9100 weight 1 check inter 2000 rise 2 fall 3
+ server {{ host }} {{ ip }}:8082 weight 1 check inter 2000 rise 2 fall 3
{% endfor %}
@@ -41,7 +41,7 @@ listen contrail-discovery
balance roundrobin
option nolinger
{% for host,ip in haproxy_hosts.items() %}
- server {{ host }} {{ ip }}:9110 weight 1 check inter 2000 rise 2 fall 3
+ server {{ host }} {{ ip }}:5998 weight 1 check inter 2000 rise 2 fall 3
{% endfor %}
@@ -56,7 +56,7 @@ listen contrail-analytics-api
tcp-check connect port 6379
default-server error-limit 1 on-error mark-down
{% for host,ip in haproxy_hosts.items() %}
- server {{ host }} {{ ip }}:9081 weight 1 check inter 2000 rise 2 fall 5
+ server {{ host }} {{ ip }}:8081 weight 1 check inter 2000 rise 2 fall 5
{% endfor %}