aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/open-contrail/templates/provision/haproxy-contrail-cfg.j2
blob: 01196369c09a9ae998747332a29aa835c90da0f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#contrail-marker-start

listen contrail-stats
#    bind *:5937
    bind {{ internal_vip.ip }}:5937
    bind {{ public_vip.ip }}:5937
    mode http
    stats enable
    stats uri /
    stats auth haproxy:contrail123

# compass has bind neutron-server
#listen neutron-server
#    bind *:9696
#    balance roundrobin
#    option nolinger
#{% for host,ip in haproxy_hosts.items() %}
#    server {{ host }} {{ ip }}:9697 weight 1 check inter 2000 rise 2 fall 3
#{% endfor %}



listen contrail-api
#    bind *:8082
    bind {{ internal_vip.ip }}:8082
    bind {{ public_vip.ip }}:8082
    balance roundrobin
    option nolinger
    timeout client 3m
    timeout server 3m
{% for host,ip in haproxy_hosts.items() %}
    server {{ host }} {{ ip }}:8082 weight 1 check inter 2000 rise 2 fall 3
{% endfor %}



listen contrail-discovery
#    bind *:5998
    bind {{ internal_vip.ip }}:5998
    bind {{ public_vip.ip }}:5998
    balance roundrobin
    option nolinger
{% for host,ip in haproxy_hosts.items() %}
    server {{ host }} {{ ip }}:5998 weight 1 check inter 2000 rise 2 fall 3
{% endfor %}



listen contrail-analytics-api
#    bind *:8081
    bind {{ internal_vip.ip }}:8081
    bind {{ public_vip.ip }}:8081
    balance roundrobin
    option nolinger
    option tcp-check
    tcp-check connect port 6379
    default-server error-limit 1 on-error mark-down
{% for host,ip in haproxy_hosts.items() %}
    server {{ host }} {{ ip }}:8081 weight 1 check inter 2000 rise 2 fall 5
{% endfor %}


# compass doesn't use ha for rabbitmq, but use cluster mode
#listen rabbitmq
#    bind *:5673
#    mode tcp
#    balance roundrobin
#    maxconn 10000
#    option tcplog
#    option tcpka
#    option redispatch
#    timeout client 48h
#    timeout server 48h
{% for host,ip in haproxy_hosts.items() %}
#    server {{ host }} {{ ip }}:5672 weight 1 check inter 2000 rise 2 fall 5
{% endfor %}

#contrail-marker-end