Skip to content

Commit f1c3e78

Browse files
OCPBUGS#45054: Maintain linear nomenclature for nodes in the examples of the platform agnostic cluster installation documentation
1 parent fdd0653 commit f1c3e78

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

modules/installation-load-balancing-user-infra.adoc

+7-7
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ ifdef::user-managed-lb[]
145145
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.
146146
endif::user-managed-lb[]
147147

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.
149149

150150
[NOTE]
151151
====
@@ -184,16 +184,16 @@ listen api-server-6443 <1>
184184
option log-health-checks
185185
balance roundrobin
186186
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
190190
listen machine-config-server-22623 <3>
191191
bind *:22623
192192
mode tcp
193193
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
197197
listen ingress-router-443 <4>
198198
bind *:443
199199
mode tcp

0 commit comments

Comments
 (0)