Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP OSDOCS#12698: Multiple NIC support for vSphere #86662

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,14 @@ include::modules/ipi-install-modifying-install-config-for-dual-stack-network.ado

include::modules/configuring-vsphere-regions-zones.adoc[leveloffset=+2]

// Specifying multiple NICS
include::modules/installation-vsphere-multiple-nics.adoc[leveloffset=+2]

[role="_additional-resources"]
.Additional resources

* xref:../../../installing/installing_vsphere/installation-config-parameters-vsphere.adoc#installation-configuration-parameters-network_installation-config-parameters-vsphere[Network configuration parameters]

// Network configuration phases
include::modules/nw-network-config.adoc[leveloffset=+1]

Expand Down
80 changes: 80 additions & 0 deletions modules/installation-vsphere-multiple-nics.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
// Module included in the following assemblies:
//
// * installing/installing-vsphere-installer-provisioned-network-customizations.adoc

:_mod-docs-content-type: PROCEDURE
[id="installation-vsphere-multiple-nics_{context}"]
= Configuring multiple NICs

For scenarios requiring multiple NICs, {product-title} supports configuration of multiple network adapters per node.

:FeatureName: Configuring multiple NICs
include::snippets/technology-preview.adoc[]

.Procedure

. Specify the network adapter names in the networks section of `platform.vsphere.failureDomains[*].topology` as shown in the following file:
+
[source,yaml]
----
platform:
vsphere:
vcenters:
...
failureDomains:
- name: <failure_domain_name>
region: <default_region_name>
zone: <default_zone_name>
server: <fully_qualified_domain_name>
topology:
datacenter: <data_center>
computeCluster: "/<data_center>/host/<cluster>"
networks: # <1>
- <VM_network1_name>
- <VM_network2_name>
- ...
- <VM_network10_name>
----
<1> Specifies the list of network adapters. You can specify up to 10 network adapters.

. Specify at least one of the following configurations:

** `networking.machineNetwork`
+
.Example configuration
+
[source,yaml]
----
networking:
...
machineNetwork:
- cidr: 10.0.0.0/16
...
----
+
[NOTE]
====
The `networking.machineNetwork.cidr` must correspond to an address on the first adapter defined in `topology.networks`.
====

** `nodeNetworking`
+
.Example configuration
+
[source,yaml]
----
platform:
vsphere:
nodeNetworking:
external:
networkSubnetCidr:
- <machine_network_cidr_ipv4>
- <machine_network_cidr_ipv6>
internal:
networkSubnetCidr:
- <machine_network_cidr_ipv4>
- <machine_network_cidr_ipv6>
failureDomains:
- name: <failure_domain_name>
region: <default_region_name>
----
1 change: 1 addition & 0 deletions modules/nw-network-config.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Phase 1:: You can customize the following network-related fields in the `install
* `networking.clusterNetwork`
* `networking.serviceNetwork`
* `networking.machineNetwork`
* `nodeNetworking`
+
For more information, see "Installation configuration parameters".
+
Expand Down