2019-02-07 15:10:49 +08:00
|
|
|
global
|
2019-05-30 21:37:01 +08:00
|
|
|
log /dev/log local1 warning
|
2019-02-07 15:10:49 +08:00
|
|
|
chroot /var/lib/haproxy
|
|
|
|
user haproxy
|
|
|
|
group haproxy
|
|
|
|
daemon
|
2019-06-11 13:48:34 +08:00
|
|
|
maxconn 50000
|
2019-02-07 15:10:49 +08:00
|
|
|
nbproc 1
|
|
|
|
|
|
|
|
defaults
|
|
|
|
log global
|
2019-05-30 21:37:01 +08:00
|
|
|
timeout connect 5s
|
2019-02-07 15:10:49 +08:00
|
|
|
timeout client 10m
|
|
|
|
timeout server 10m
|
|
|
|
|
2019-05-30 21:37:01 +08:00
|
|
|
listen kube-master
|
|
|
|
bind 0.0.0.0:{{ EX_APISERVER_PORT }}
|
|
|
|
mode tcp
|
|
|
|
option tcplog
|
|
|
|
option dontlognull
|
|
|
|
option dontlog-normal
|
|
|
|
balance {{ BALANCE_ALG }}
|
|
|
|
{% for host in groups['kube-master'] %}
|
|
|
|
server {{ host }} {{ host }}:6443 check inter 5s fall 2 rise 2 weight 1
|
|
|
|
{% endfor %}
|
2019-02-07 15:10:49 +08:00
|
|
|
|
2019-05-30 21:37:01 +08:00
|
|
|
{% if INGRESS_NODEPORT_LB == "yes" %}
|
2019-02-07 15:10:49 +08:00
|
|
|
listen ingress-node
|
|
|
|
bind 0.0.0.0:80
|
|
|
|
mode tcp
|
|
|
|
option tcplog
|
2019-05-30 21:37:01 +08:00
|
|
|
option dontlognull
|
|
|
|
option dontlog-normal
|
2019-02-07 15:10:49 +08:00
|
|
|
balance {{ BALANCE_ALG }}
|
2019-05-30 21:37:01 +08:00
|
|
|
{% if groups['kube-node']|length > 3 %}
|
|
|
|
server {{ groups['kube-node'][0] }} {{ groups['kube-node'][0] }}:23456 check inter 5s fall 2 rise 2 weight 1
|
|
|
|
server {{ groups['kube-node'][1] }} {{ groups['kube-node'][1] }}:23456 check inter 5s fall 2 rise 2 weight 1
|
|
|
|
server {{ groups['kube-node'][2] }} {{ groups['kube-node'][2] }}:23456 check inter 5s fall 2 rise 2 weight 1
|
|
|
|
{% else %}
|
2019-02-07 15:10:49 +08:00
|
|
|
{% for host in groups['kube-node'] %}
|
2019-05-30 21:37:01 +08:00
|
|
|
server {{ host }} {{ host }}:23456 check inter 5s fall 2 rise 2 weight 1
|
2019-02-07 15:10:49 +08:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2019-05-30 21:37:01 +08:00
|
|
|
{% endif %}
|
2019-02-07 15:10:49 +08:00
|
|
|
|
2019-05-30 21:37:01 +08:00
|
|
|
{% if INGRESS_TLS_NODEPORT_LB == "yes" %}
|
2019-02-07 15:10:49 +08:00
|
|
|
listen ingress-node-tls
|
|
|
|
bind 0.0.0.0:443
|
|
|
|
mode tcp
|
|
|
|
option tcplog
|
2019-05-30 21:37:01 +08:00
|
|
|
option dontlognull
|
|
|
|
option dontlog-normal
|
2019-02-07 15:10:49 +08:00
|
|
|
balance {{ BALANCE_ALG }}
|
2019-05-30 21:37:01 +08:00
|
|
|
{% if groups['kube-node']|length > 3 %}
|
|
|
|
server {{ groups['kube-node'][0] }} {{ groups['kube-node'][0] }}:23457 check inter 5s fall 2 rise 2 weight 1
|
|
|
|
server {{ groups['kube-node'][1] }} {{ groups['kube-node'][1] }}:23457 check inter 5s fall 2 rise 2 weight 1
|
|
|
|
server {{ groups['kube-node'][2] }} {{ groups['kube-node'][2] }}:23457 check inter 5s fall 2 rise 2 weight 1
|
|
|
|
{% else %}
|
2019-02-07 15:10:49 +08:00
|
|
|
{% for host in groups['kube-node'] %}
|
2019-06-09 10:58:01 +08:00
|
|
|
server {{ host }} {{ host }}:23457 check inter 5s fall 2 rise 2 weight 1
|
2019-02-07 15:10:49 +08:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2019-05-30 21:37:01 +08:00
|
|
|
{% endif %}
|