|
@@ -97,7 +97,8 @@ sudo ansible-playbook -i inventory/hosts.localhost playbooks/deploy_cluster.yml
|
|
|
## Node Group Definition and Mapping
|
|
|
In 3.10 and newer all members of the [nodes] inventory group must be assigned an
|
|
|
`openshift_node_group_name`. This value is used to select the configmap that
|
|
|
-configures each node. By default there are three node groups defined
|
|
|
+configures each node. By default there are three configmaps created; one for
|
|
|
+each node group defined in `openshift_node_groups` and they're named
|
|
|
`node-config-master` `node-config-infra` `node-config-compute`. It's important
|
|
|
to note that the configmap is also the authoritative definition of node labels,
|
|
|
the old `openshift_node_labels` value is effectively ignored.
|
|
@@ -131,7 +132,7 @@ openshift_node_groups=[{'name': 'node-config-all-in-one', 'labels': ['node-role.
|
|
|
```
|
|
|
|
|
|
For upgrades, the upgrade process will block until you have the required
|
|
|
-configmaps created in the openshift-node namespace. Please define
|
|
|
+configmaps in the openshift-node namespace. Please define
|
|
|
`openshift_node_groups` as explained above or accept the defaults and run the
|
|
|
playbooks/openshift-master/openshift_node_group.yml playbook to have them
|
|
|
created for you automatically.
|