Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions modules/installation-load-balancing-user-infra.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,6 @@ defaults
listen api-server-6443 <1>
bind *:6443
mode tcp
option httpchk GET /readyz HTTP/1.0
option log-health-checks
balance roundrobin
server bootstrap bootstrap.ocp4.example.com:6443 verify none check check-ssl inter 10s fall 2 rise 3 backup <2>
server master0 master0.ocp4.example.com:6443 weight 1 verify none check check-ssl inter 10s fall 2 rise 3
Expand All @@ -190,10 +188,10 @@ listen api-server-6443 <1>
listen machine-config-server-22623 <3>
bind *:22623
mode tcp
server bootstrap bootstrap.ocp4.example.com:22623 check inter 1s backup <2>
server master0 master0.ocp4.example.com:22623 check inter 1s
server master1 master1.ocp4.example.com:22623 check inter 1s
server master2 master2.ocp4.example.com:22623 check inter 1s
server bootstrap bootstrap.ocp4.example.com:22623 verify none check check-ssl inter 10s fall 2 rise 3 backup <2>
server master0 master0.ocp4.example.com:22623 weight 1 verify none check check-ssl inter 10s fall 2 rise 3
server master1 master1.ocp4.example.com:22623 weight 1 verify none check check-ssl inter 10s fall 2 rise 3
server master2 master2.ocp4.example.com:22623 weight 1 verify none check check-ssl inter 10s fall 2 rise 3
listen ingress-router-443 <4>
bind *:443
mode tcp
Expand Down