Skip to content

Commit df89a17

Browse files
committed
change master/worker to control plane/compute
1 parent 07d8c34 commit df89a17

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

modules/installation-dns-user-infra.adoc

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,12 @@ For example, `console-openshift-console.apps.<cluster_name>.<base_domain>` is us
8888
machine. These records must be resolvable by the nodes within the cluster.
8989

9090
|Control plane machines
91-
|`<master><n>.<cluster_name>.<base_domain>.`
91+
|`<control_plane><n>.<cluster_name>.<base_domain>.`
9292
|DNS A/AAAA or CNAME records and DNS PTR records to identify each machine
9393
for the control plane nodes. These records must be resolvable by the nodes within the cluster.
9494

9595
|Compute machines
96-
|`<worker><n>.<cluster_name>.<base_domain>.`
96+
|`<compute><n>.<cluster_name>.<base_domain>.`
9797
|DNS A/AAAA or CNAME records and DNS PTR records to identify each machine
9898
for the worker nodes. These records must be resolvable by the nodes within the cluster.
9999

@@ -149,12 +149,12 @@ api-int.ocp4.example.com. IN A 192.168.1.5 <2>
149149
;
150150
bootstrap.ocp4.example.com. IN A 192.168.1.96 <4>
151151
;
152-
master0.ocp4.example.com. IN A 192.168.1.97 <5>
153-
master1.ocp4.example.com. IN A 192.168.1.98 <5>
154-
master2.ocp4.example.com. IN A 192.168.1.99 <5>
152+
control-plane0.ocp4.example.com. IN A 192.168.1.97 <5>
153+
control-plane1.ocp4.example.com. IN A 192.168.1.98 <5>
154+
control-plane2.ocp4.example.com. IN A 192.168.1.99 <5>
155155
;
156-
worker0.ocp4.example.com. IN A 192.168.1.11 <6>
157-
worker1.ocp4.example.com. IN A 192.168.1.7 <6>
156+
compute0.ocp4.example.com. IN A 192.168.1.11 <6>
157+
compute1.ocp4.example.com. IN A 192.168.1.7 <6>
158158
;
159159
;EOF
160160
----
@@ -196,12 +196,12 @@ $TTL 1W
196196
;
197197
96.1.168.192.in-addr.arpa. IN PTR bootstrap.ocp4.example.com. <3>
198198
;
199-
97.1.168.192.in-addr.arpa. IN PTR master0.ocp4.example.com. <4>
200-
98.1.168.192.in-addr.arpa. IN PTR master1.ocp4.example.com. <4>
201-
99.1.168.192.in-addr.arpa. IN PTR master2.ocp4.example.com. <4>
199+
97.1.168.192.in-addr.arpa. IN PTR control-plane0.ocp4.example.com. <4>
200+
98.1.168.192.in-addr.arpa. IN PTR control-plane1.ocp4.example.com. <4>
201+
99.1.168.192.in-addr.arpa. IN PTR control-plane2.ocp4.example.com. <4>
202202
;
203-
11.1.168.192.in-addr.arpa. IN PTR worker0.ocp4.example.com. <5>
204-
7.1.168.192.in-addr.arpa. IN PTR worker1.ocp4.example.com. <5>
203+
11.1.168.192.in-addr.arpa. IN PTR compute0.ocp4.example.com. <5>
204+
7.1.168.192.in-addr.arpa. IN PTR compute1.ocp4.example.com. <5>
205205
;
206206
;EOF
207207
----

0 commit comments

Comments
 (0)