-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhaproxy.cfg
More file actions
102 lines (90 loc) · 3.26 KB
/
haproxy.cfg
File metadata and controls
102 lines (90 loc) · 3.26 KB
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
95
96
97
98
99
100
101
#---------------------------------------------------------------------
# Global settings
#---------------------------------------------------------------------
global
maxconn 20000
log /dev/log local0 info
chroot /var/lib/haproxy
pidfile /var/run/haproxy.pid
user haproxy
group haproxy
daemon
stats socket /var/lib/haproxy/stats
#---------------------------------------------------------------------
# Defaults
#---------------------------------------------------------------------
defaults
mode tcp
log global
option dontlognull
option redispatch
option tcplog
retries 3
timeout connect 10s
timeout client 300s
timeout server 300s
timeout check 10s
maxconn 20000
#---------------------------------------------------------------------
# Stats UI (http://<host>:9000)
#---------------------------------------------------------------------
listen stats
bind :9000
mode http
stats enable
stats uri /
stats refresh 10s
#---------------------------------------------------------------------
# OpenShift Kubernetes API (6443)
#---------------------------------------------------------------------
frontend okd4_k8s_api_fe
bind :6443
default_backend okd4_k8s_api_be
backend okd4_k8s_api_be
balance source
option tcp-check
server bootstrap 192.168.50.200:6443 check
server master1 192.168.50.201:6443 check
server master2 192.168.50.202:6443 check
server master3 192.168.50.203:6443 check
#---------------------------------------------------------------------
# Machine Config Server (22623)
#---------------------------------------------------------------------
frontend okd4_machine_config_server_fe
bind :22623
default_backend okd4_machine_config_server_be
backend okd4_machine_config_server_be
balance source
option tcp-check
# server bootstrap 192.168.50.200:22623 check
server master1 192.168.50.201:22623 check
server master2 192.168.50.202:22623 check
server master3 192.168.50.203:22623 check
#---------------------------------------------------------------------
# HTTP Ingress (80)
#---------------------------------------------------------------------
frontend okd4_http_ingress_fe
bind :80
default_backend okd4_http_ingress_be
backend okd4_http_ingress_be
balance source
option tcp-check
server master1 192.168.50.201:80 check
server master2 192.168.50.202:80 check
server master3 192.168.50.203:80 check
server worker1 192.168.50.204:80 check
server worker2 192.168.50.205:80 check
#---------------------------------------------------------------------
# HTTPS Ingress (443)
#---------------------------------------------------------------------
frontend okd4_https_ingress_fe
bind :443
default_backend okd4_https_ingress_be
backend okd4_https_ingress_be
balance source
option tcp-check
server master1 192.168.50.201:80 check
server master2 192.168.50.202:80 check
server master3 192.168.50.203:80 check
server worker1 192.168.50.204:443 check
server worker2 192.168.50.205:443 check