You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/installation-load-balancing-user-infra.adoc
+7-7
Original file line number
Diff line number
Diff line change
@@ -145,7 +145,7 @@ ifdef::user-managed-lb[]
145
145
This section provides an example API and application Ingress load balancer configuration that meets the load balancing requirements for clusters that are deployed with user-managed load balancers. The sample is an `/etc/haproxy/haproxy.cfg` configuration for an HAProxy load balancer. The example is not meant to provide advice for choosing one load balancing solution over another.
146
146
endif::user-managed-lb[]
147
147
148
-
In the example, the same load balancer is used for the Kubernetes API and application ingress traffic. In production scenarios, you can deploy the API and application ingress load balancers separately so that you can scale the load balancer infrastructure for each in isolation.
148
+
In the example, the cluster name is `ocp4` and the base domain is `example.com`. Here, the same load balancer is used for the Kubernetes API and application ingress traffic. In production scenarios, you can deploy the API and application ingress load balancers separately so that you can scale the load balancer infrastructure for each in isolation.
149
149
150
150
[NOTE]
151
151
====
@@ -184,16 +184,16 @@ listen api-server-6443 <1>
184
184
option log-health-checks
185
185
balance roundrobin
186
186
server bootstrap bootstrap.ocp4.example.com:6443 verify none check check-ssl inter 10s fall 2 rise 3 backup <2>
187
-
server master0 master0.ocp4.example.com:6443 weight 1 verify none check check-ssl inter 10s fall 2 rise 3
188
-
server master1 master1.ocp4.example.com:6443 weight 1 verify none check check-ssl inter 10s fall 2 rise 3
189
-
server master2 master2.ocp4.example.com:6443 weight 1 verify none check check-ssl inter 10s fall 2 rise 3
187
+
server control-plane0 control-plane0.ocp4.example.com:6443 weight 1 verify none check check-ssl inter 10s fall 2 rise 3
188
+
server control-plane1 control-plane1.ocp4.example.com:6443 weight 1 verify none check check-ssl inter 10s fall 2 rise 3
189
+
server control-plane2 control-plane2.ocp4.example.com:6443 weight 1 verify none check check-ssl inter 10s fall 2 rise 3
190
190
listen machine-config-server-22623 <3>
191
191
bind *:22623
192
192
mode tcp
193
193
server bootstrap bootstrap.ocp4.example.com:22623 check inter 1s backup <2>
194
-
server master0 master0.ocp4.example.com:22623 check inter 1s
195
-
server master1 master1.ocp4.example.com:22623 check inter 1s
196
-
server master2 master2.ocp4.example.com:22623 check inter 1s
194
+
server control-plane0 control-plane0.ocp4.example.com:22623 check inter 1s
195
+
server control-plane1 control-plane1.ocp4.example.com:22623 check inter 1s
196
+
server control-plane2 control-plane2.ocp4.example.com:22623 check inter 1s
0 commit comments