2017-11-11 19:14:21 +08:00
|
|
|
global
|
|
|
|
log /dev/log local0
|
|
|
|
log /dev/log local1 notice
|
|
|
|
chroot /var/lib/haproxy
|
|
|
|
stats socket /run/haproxy/admin.sock mode 660 level admin
|
|
|
|
stats timeout 30s
|
|
|
|
user haproxy
|
|
|
|
group haproxy
|
|
|
|
daemon
|
|
|
|
nbproc 1
|
|
|
|
|
|
|
|
defaults
|
|
|
|
log global
|
|
|
|
timeout connect 5000
|
2018-02-07 10:25:21 +08:00
|
|
|
timeout client 10m
|
|
|
|
timeout server 10m
|
2017-11-11 19:14:21 +08:00
|
|
|
|
|
|
|
listen kube-master
|
2018-04-17 21:14:03 +08:00
|
|
|
bind 0.0.0.0:{{ KUBE_APISERVER.split(':')[2] }}
|
2017-11-11 19:14:21 +08:00
|
|
|
mode tcp
|
|
|
|
option tcplog
|
|
|
|
balance source
|
2018-03-02 15:16:40 +08:00
|
|
|
server s1 {{ master1 }} check inter 10000 fall 2 rise 2 weight 1
|
|
|
|
server s2 {{ master2 }} check inter 10000 fall 2 rise 2 weight 1
|