Created
January 9, 2020 22:22
-
-
Save jfblaine/20f7ace7f9f15e92bfd137b2bb6ba558 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| defaults | |
| mode http | |
| log global | |
| option httplog | |
| option dontlognull | |
| option forwardfor except 127.0.0.0/8 | |
| option redispatch | |
| retries 3 | |
| timeout http-request 10s | |
| timeout queue 1m | |
| timeout connect 10s | |
| timeout client 300s | |
| timeout server 300s | |
| timeout http-keep-alive 10s | |
| timeout check 10s | |
| maxconn 20000 | |
| frontend openshift-api-server | |
| bind *:6443 | |
| default_backend openshift-api-server | |
| mode tcp | |
| option tcplog | |
| backend openshift-api-server | |
| balance source | |
| mode tcp | |
| server bootstrap 192.168.1.10:6443 check | |
| server master-0 192.168.1.11:6443 check | |
| server master-1 192.168.1.12:6443 check | |
| server master-2 192.168.1.13:6443 check | |
| frontend machine-config-server | |
| bind *:22623 | |
| default_backend machine-config-server | |
| mode tcp | |
| option tcplog | |
| backend machine-config-server | |
| balance source | |
| mode tcp | |
| server bootstrap 192.168.1.10:22623 check | |
| server master-0 192.168.1.11:22623 check | |
| server master-1 192.168.1.12:22623 check | |
| server master-2 192.168.1.13:22623 check | |
| frontend ingress-http | |
| bind *:80 | |
| default_backend ingress-http | |
| mode tcp | |
| option tcplog | |
| backend ingress-http | |
| balance source | |
| mode tcp | |
| server worker-0 192.168.1.15:80 check | |
| server worker-1 192.168.1.16:80 check | |
| frontend ingress-https | |
| bind *:443 | |
| default_backend ingress-https | |
| mode tcp | |
| option tcplog | |
| backend ingress-https | |
| balance source | |
| mode tcp | |
| server worker-0 192.168.1.15:443 check | |
| server worker-1 192.168.1.16:443 check |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment