Skip to content

Instantly share code, notes, and snippets.

@christianh814
Last active June 10, 2020 23:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christianh814/82a6d7e522479b1df505a11b06e204ce to your computer and use it in GitHub Desktop.
Save christianh814/82a6d7e522479b1df505a11b06e204ce to your computer and use it in GitHub Desktop.
#---------------------------------------------------------------------
# Example configuration for a possible web application. See the
# full configuration options online.
#
# http://haproxy.1wt.eu/download/1.4/doc/configuration.txt
#
#---------------------------------------------------------------------
#---------------------------------------------------------------------
# Global settings
#---------------------------------------------------------------------
global
# to have these messages end up in /var/log/haproxy.log you will
# need to:
#
# 1) configure syslog to accept network log events. This is done
# by adding the '-r' option to the SYSLOGD_OPTIONS in
# /etc/sysconfig/syslog
#
# 2) configure local2 events to go to the /var/log/haproxy.log
# file. A line like the following can be added to
# /etc/sysconfig/syslog
#
# local2.* /var/log/haproxy.log
#
log 127.0.0.1 local2
chroot /var/lib/haproxy
pidfile /var/run/haproxy.pid
maxconn 4000
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
mode http
log global
option httplog
option dontlognull
option http-server-close
option forwardfor except 127.0.0.0/8
option redispatch
retries 3
timeout http-request 10s
timeout queue 1m
timeout connect 10s
timeout client 1m
timeout server 1m
timeout http-keep-alive 10s
timeout check 10s
maxconn 3000
#---------------------------------------------------------------------
listen stats
bind 192.168.1.100:9000
mode http
stats enable
stats uri /
monitor-uri /healthz
#---------------------------------------------------------------------
# CLUSTER 1 #
#---------------------------------------------------------------------
frontend openshift-api-server
bind 192.168.1.100:6443
default_backend openshift-api-server
mode tcp
option tcplog
backend openshift-api-server
balance source
mode tcp
server bootstrap 192.168.1.96:6443 check
server master0 192.168.1.97:6443 check
server master1 192.168.1.98:6443 check
server master2 192.168.1.99:6443 check
frontend machine-config-server
bind 192.168.1.100:22623
default_backend machine-config-server
mode tcp
option tcplog
backend machine-config-server
balance source
mode tcp
server bootstrap 192.168.1.96:22623 check
server master0 192.168.1.97:22623 check
server master1 192.168.1.98:22623 check
server master2 192.168.1.99:22623 check
frontend ingress-http
bind 192.168.1.100:80
default_backend ingress-http
mode tcp
option tcplog
backend ingress-http
balance source
mode tcp
server worker0 192.168.1.11:80 check
server worker1 192.168.1.7:80 check
frontend ingress-https
bind 192.168.1.100:443
default_backend ingress-https
mode tcp
option tcplog
backend ingress-https
balance source
mode tcp
server worker0 192.168.1.11:443 check
server worker1 192.168.1.7:443 check
#---------------------------------------------------------------------
# CLUSTER 2 #
#---------------------------------------------------------------------
frontend openshift-api-server-2
bind 192.168.2.100:6443
default_backend openshift-api-server-2
mode tcp
option tcplog
backend openshift-api-server-2
balance source
mode tcp
server bootstrap-2 192.168.2.96:6443 check
server master0-2 192.168.2.97:6443 check
server master1-2 192.168.2.98:6443 check
server master2-2 192.168.2.99:6443 check
frontend machine-config-server-2
bind 192.168.2.100:22623
default_backend machine-config-server-2
mode tcp
option tcplog
backend machine-config-server-2
balance source
mode tcp
server bootstrap-2 192.168.2.96:22623 check
server master0-2 192.168.2.97:22623 check
server master1-2 192.168.2.98:22623 check
server master2-2 192.168.2.99:22623 check
frontend ingress-http-2
bind 192.168.2.100:80
default_backend ingress-http-2
mode tcp
option tcplog
backend ingress-http-2
balance source
mode tcp
server worker0-2 192.168.2.11:80 check
server worker1-2 192.168.2.7:80 check
frontend ingress-https-2
bind 192.168.2.100:443
default_backend ingress-https-2
mode tcp
option tcplog
backend ingress-https-2
balance source
mode tcp
server worker0-2 192.168.2.11:443 check
server worker1-2 192.168.2.7:443 check
#---------------------------------------------------------------------
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment