From ffe4176466df0bad04314f59c02d3bcaf2f9fe25 Mon Sep 17 00:00:00 2001 From: Phil Moses Date: Sat, 12 Feb 2022 08:29:18 -0800 Subject: [PATCH] Update Documentation to say "Control Plane" #274 Control Plane utilized where appropriate controlplane utilized in code. --- docs/bmquickstart.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/bmquickstart.md b/docs/bmquickstart.md index 8cc4570..e4aff6d 100644 --- a/docs/bmquickstart.md +++ b/docs/bmquickstart.md @@ -47,7 +47,7 @@ git clone https://github.com/RedHatOfficial/ocp4-helpernode cd ocp4-helpernode ``` -Get the mac address of the instances/vms/servers that are going to be your OpenShift 4 cluster. At a minimum you need 1 bootstrap, 3 masters, and 2 workers. So you'll need to have 6 Mac Addresses +Get the mac address of the instances/vms/servers that are going to be your OpenShift 4 cluster. At a minimum you need 1 bootstrap, 3 control plane, and 2 workers. So you'll need to have 6 Mac Addresses Edit the [vars.yaml](examples/vars.yaml) file with the mac addresses of your instances. @@ -141,12 +141,12 @@ Create the installation manifests openshift-install create manifests ``` -Edit the `manifests/cluster-scheduler-02-config.yml` Kubernetes manifest file to prevent Pods from being scheduled on the control plane machines by setting `mastersSchedulable` to `false`. +Edit the `manifests/cluster-scheduler-02-config.yml` Kubernetes manifest file to prevent Pods from being scheduled on the control plane machines by setting `controlplaneSchedulable` to `false`. > :rotating_light: Skip this step if you're installing a compact cluster ```shell -$ sed -i 's/mastersSchedulable: true/mastersSchedulable: false/g' manifests/cluster-scheduler-02-config.yml +$ sed -i 's/controlplaneSchedulable: true/controlplaneSchedulable: false/g' manifests/cluster-scheduler-02-config.yml ``` It should look something like this after you edit it. @@ -159,7 +159,7 @@ metadata: creationTimestamp: null name: cluster spec: - mastersSchedulable: false + controlplaneSchedulable: false policy: name: "" status: {} @@ -186,7 +186,7 @@ PXE boot into your Instances and they should load up the right configuration bas Boot/install the VMs/Instances in the following order * Bootstrap -* Masters +* Control Plane * Workers On your laptop/workstation visit the status page @@ -196,7 +196,7 @@ firefox http://192.168.7.77:9000 ``` > :warning: Make sure you don't expose this port in public cloud environments! -You'll see the bootstrap turn "green" and then the masters turn "green", then the bootstrap turn "red". This is your indication that you can continue. +You'll see the bootstrap turn "green" and then the control plane turn "green", then the bootstrap turn "red". This is your indication that you can continue. ## Wait for install