Skip to content

Commit 03c0a6b

Browse files
authored
Merge pull request #47982 from tmalove/sdn2585-411-doc-update
[SDN-2585]: Configure multiple worker and controller for initial configurations
2 parents 4a10d91 + 70f39f5 commit 03c0a6b

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

installing/installing_bare_metal_ipi/ipi-install-installation-workflow.adoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ include::modules/ipi-install-configuring-host-network-interfaces-in-the-install-
4848

4949
* xref:../../release_notes/ocp-4-11-release-notes.adoc#ocp-4-11-known-issues[OpenShift Container Platform 4.11 release notes]
5050

51+
include::modules/ipi-install-configure-multiple-cluster-nodes.adoc[leveloffset=+2]
52+
5153
include::modules/ipi-install-configuring-managed-secure-boot-in-the-install-config-file.adoc[leveloffset=+2]
5254

5355
[id="ipi-install-manifest-configuration-files"]
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
// Module included in the following assemblies:
2+
//
3+
// * installing/installing_bare_metal_ipi/ipi-install-installation-workflow.adoc
4+
5+
:_content-type: CONCEPT
6+
[id="ipi-install-configure-multiple-cluster-nodes_{context}"]
7+
= Configuring multiple cluster nodes
8+
9+
You can simultaneously configure {product-title} cluster nodes with identical settings. Configuring multiple cluster nodes avoids adding redundant information for each node to the `install-config.yaml` file. This file contains specific parameters to apply an identical configuration to multiple nodes in the cluster.
10+
11+
Compute nodes are configured separately from the controller node. However, configurations for both node types use the highlighted parameters in the `install-config.yaml` file to enable multi-node configuration. Set the `networkConfig` parameters to `BOND`, as shown in the following example:
12+
13+
[source,yaml]
14+
----
15+
hosts:
16+
- name: ostest-master-0
17+
[...]
18+
networkConfig: &BOND
19+
interfaces:
20+
- name: bond0
21+
type: bond
22+
state: up
23+
ipv4:
24+
dhcp: true
25+
enabled: true
26+
link-aggregation:
27+
mode: active-backup
28+
port:
29+
- enp2s0
30+
- enp3s0
31+
- name: ostest-master-1
32+
[...]
33+
networkConfig: *BOND
34+
- name: ostest-master-2
35+
[...]
36+
networkConfig: *BOND
37+
----
38+
39+
NOTE: Configuration of multiple cluster nodes is only available for initial deployments on installer-provisioned infrastructure.

0 commit comments

Comments
 (0)