From 8343aedcbfacd50fa251aed4ea466220d495430a Mon Sep 17 00:00:00 2001 From: SNiemann15 Date: Mon, 22 Jan 2024 15:53:45 +0100 Subject: [PATCH] change master/worker to control plane/compute --- modules/installation-dns-user-infra.adoc | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/modules/installation-dns-user-infra.adoc b/modules/installation-dns-user-infra.adoc index 45466350d7..85232130c0 100644 --- a/modules/installation-dns-user-infra.adoc +++ b/modules/installation-dns-user-infra.adoc @@ -88,12 +88,12 @@ For example, `console-openshift-console.apps..` is us machine. These records must be resolvable by the nodes within the cluster. |Control plane machines -|`...` +|`...` |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 -|`...` +|`...` |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 ----