Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/bmquickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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.
Expand All @@ -159,7 +159,7 @@ metadata:
creationTimestamp: null
name: cluster
spec:
mastersSchedulable: false
controlplaneSchedulable: false
policy:
name: ""
status: {}
Expand All @@ -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
Expand All @@ -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

Expand Down