blob: 5cd240c04d12b958f584224984222179c16dbef6 (
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
|
global
#chroot /var/run/haproxy
daemon
user haproxy
group haproxy
maxconn 4000
pidfile /var/run/haproxy/haproxy.pid
#log 127.0.0.1 local0
tune.bufsize 1000000
stats socket /var/run/haproxy.sock
stats timeout 2m
defaults
log global
maxconn 8000
option redispatch
option dontlognull
option splice-auto
timeout http-request 10s
timeout queue 1m
timeout connect 10s
timeout client 50s
timeout server 50s
timeout check 10s
retries 3
listen kubernetes-apiserver-https
bind {{ public_vip.ip }}:8383
option ssl-hello-chk
mode tcp
option tcpka
option tcplog
timeout client 3h
timeout server 3h
balance roundrobin
{% for host,ip in haproxy_hosts.items() %}
server {{ host }} {{ ip }}:6443 weight 1 check inter 2000 rise 2 fall 5
{% endfor %}
listen stats
mode http
bind 0.0.0.0:9999
stats enable
stats refresh 30s
stats uri /
stats realm Global\ statistics
stats auth admin:admin
|