forked from eduardolucioac/okd_bare_metal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
haproxy.cfg
94 lines (83 loc) · 2.68 KB
/
haproxy.cfg
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#---------------------------------------------------------------------
# Global settings.
#---------------------------------------------------------------------
global
maxconn 20000
log /dev/log local0 info
chroot /var/lib/haproxy
pidfile /var/run/haproxy.pid
user haproxy
group haproxy
daemon
# Turn on stats unix socket.
stats socket /var/lib/haproxy/stats
#---------------------------------------------------------------------
# Common defaults that all the "listen" and "backend" sections will use if not designated
# in their block.
#---------------------------------------------------------------------
defaults
log global
maxconn 20000
mode http
option dontlognull
option http-server-close
option httplog
option redispatch
retries 3
timeout check 10s
timeout client 300s
timeout connect 10s
timeout http-keep-alive 10s
timeout http-request 10s
timeout queue 1m
timeout server 300s
listen stats
bind :9000
mode http
option forwardfor except 127.0.0.0/8
stats enable
stats uri /
frontend okd_k8s_api_fe
bind :6443
default_backend okd_k8s_api_be
mode tcp
option tcplog
backend okd_k8s_api_be
balance roundrobin
mode tcp
server okd-bootstrap <OKD_LAN_24>.<OKD_BOOTSTRAP_LST_OCT>:6443 check
server okd-master-1 <OKD_LAN_24>.<OKD_MASTER_1_LST_OCT>:6443 check
server okd-master-2 <OKD_LAN_24>.<OKD_MASTER_2_LST_OCT>:6443 check
server okd-master-3 <OKD_LAN_24>.<OKD_MASTER_3_LST_OCT>:6443 check
frontend okd_machine_config_server_fe
bind :22623
default_backend okd_machine_config_server_be
mode tcp
option tcplog
backend okd_machine_config_server_be
balance roundrobin
mode tcp
server okd-bootstrap <OKD_LAN_24>.<OKD_BOOTSTRAP_LST_OCT>:22623 check
server okd-master-1 <OKD_LAN_24>.<OKD_MASTER_1_LST_OCT>:22623 check
server okd-master-2 <OKD_LAN_24>.<OKD_MASTER_2_LST_OCT>:22623 check
server okd-master-3 <OKD_LAN_24>.<OKD_MASTER_3_LST_OCT>:22623 check
frontend okd_http_ingress_traffic_fe
bind *:80
default_backend okd_http_ingress_traffic_be
mode tcp
option tcplog
backend okd_http_ingress_traffic_be
balance roundrobin
mode tcp
server okd-worker-1 <OKD_LAN_24>.<OKD_WORKER_1_LST_OCT>:80 check
server okd-worker-2 <OKD_LAN_24>.<OKD_WORKER_2_LST_OCT>:80 check
frontend okd_https_ingress_traffic_fe
bind *:443
default_backend okd_https_ingress_traffic_be
mode tcp
option tcplog
backend okd_https_ingress_traffic_be
balance roundrobin
mode tcp
server okd-worker-1 <OKD_LAN_24>.<OKD_WORKER_1_LST_OCT>:443 check
server okd-worker-2 <OKD_LAN_24>.<OKD_WORKER_2_LST_OCT>:443 check