1
0
mirror of https://github.com/openshift/openshift-docs.git synced 2026-02-05 12:46:18 +01:00

change master/worker to control plane/compute

This commit is contained in:
SNiemann15
2024-01-22 15:53:45 +01:00
committed by openshift-cherrypick-robot
parent dada4b99ca
commit 8343aedcbf

View File

@@ -88,12 +88,12 @@ For example, `console-openshift-console.apps.<cluster_name>.<base_domain>` is us
machine. These records must be resolvable by the nodes within the cluster.
|Control plane machines
|`<master><n>.<cluster_name>.<base_domain>.`
|`<control_plane><n>.<cluster_name>.<base_domain>.`
|DNS A/AAAA or CNAME records and DNS PTR records to identify each machine
for the control plane nodes. These records must be resolvable by the nodes within the cluster.
|Compute machines
|`<worker><n>.<cluster_name>.<base_domain>.`
|`<compute><n>.<cluster_name>.<base_domain>.`
|DNS A/AAAA or CNAME records and DNS PTR records to identify each machine
for the worker nodes. These records must be resolvable by the nodes within the cluster.
@@ -149,12 +149,12 @@ api-int.ocp4.example.com. IN A 192.168.1.5 <2>
;
bootstrap.ocp4.example.com. IN A 192.168.1.96 <4>
;
master0.ocp4.example.com. IN A 192.168.1.97 <5>
master1.ocp4.example.com. IN A 192.168.1.98 <5>
master2.ocp4.example.com. IN A 192.168.1.99 <5>
control-plane0.ocp4.example.com. IN A 192.168.1.97 <5>
control-plane1.ocp4.example.com. IN A 192.168.1.98 <5>
control-plane2.ocp4.example.com. IN A 192.168.1.99 <5>
;
worker0.ocp4.example.com. IN A 192.168.1.11 <6>
worker1.ocp4.example.com. IN A 192.168.1.7 <6>
compute0.ocp4.example.com. IN A 192.168.1.11 <6>
compute1.ocp4.example.com. IN A 192.168.1.7 <6>
;
;EOF
----
@@ -196,12 +196,12 @@ $TTL 1W
;
96.1.168.192.in-addr.arpa. IN PTR bootstrap.ocp4.example.com. <3>
;
97.1.168.192.in-addr.arpa. IN PTR master0.ocp4.example.com. <4>
98.1.168.192.in-addr.arpa. IN PTR master1.ocp4.example.com. <4>
99.1.168.192.in-addr.arpa. IN PTR master2.ocp4.example.com. <4>
97.1.168.192.in-addr.arpa. IN PTR control-plane0.ocp4.example.com. <4>
98.1.168.192.in-addr.arpa. IN PTR control-plane1.ocp4.example.com. <4>
99.1.168.192.in-addr.arpa. IN PTR control-plane2.ocp4.example.com. <4>
;
11.1.168.192.in-addr.arpa. IN PTR worker0.ocp4.example.com. <5>
7.1.168.192.in-addr.arpa. IN PTR worker1.ocp4.example.com. <5>
11.1.168.192.in-addr.arpa. IN PTR compute0.ocp4.example.com. <5>
7.1.168.192.in-addr.arpa. IN PTR compute1.ocp4.example.com. <5>
;
;EOF
----