Skip to content
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
22 changes: 11 additions & 11 deletions modules/nw-multus-bond-cni-object.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The following table describes the configuration parameters for the Bond CNI plug

|`name`
|`string`
|Specifies the name given to this CNI network attachment definition. This name is used to identify and reference the interface within the container.
|The mandatory, unique identifier assigned to this CNI network attachment definition. It is used by the container runtime to select the correct network configuration and serves as the key for persistent resource state management, such as IP address allocations.

|`cniVersion`
|`string`
Expand All @@ -34,15 +34,15 @@ The following table describes the configuration parameters for the Bond CNI plug

|`mtu`
|`integer`
|Optional: Specifies the maximum transmission unit (MTU) of the bond. The default is 1500.
|Optional: Specifies the maximum transmission unit (MTU) of the bond. The default is 1500.

|`failOverMac`
|`integer`
|Optional: Specifies the `failOverMac` setting for the bond. Default is 0.

|`mode`
|`string`
|Specifies the bonding policy.
|Specifies the bonding policy.

|`xmitHashPolicy`
|`string`
Expand Down Expand Up @@ -75,15 +75,15 @@ The following example configures a secondary network named `bond-net1`:
[source,json]
----
{
"type": "bond",
"type": "bond",
"cniVersion": "0.3.1",
"name": "bond-net1",
"mode": "active-backup",
"failOverMac": 1,
"linksInContainer": true,
"mode": "active-backup",
"failOverMac": 1,
"linksInContainer": true,
"miimon": "100",
"mtu": 1500,
"links": [
"links": [
{"name": "net1"},
{"name": "net2"}
],
Expand All @@ -106,9 +106,9 @@ The following example configures a secondary network named `bond-tlb-net` with t
"type": "bond",
"cniVersion": "0.3.1",
"name": "bond-tlb-net",
"mode": "tlb",
"mode": "tlb",
"xmitHashPolicy": "layer2+3", <1>
"failOverMac": 0,
"failOverMac": 0,
"linksInContainer": true,
"miimon": "100",
"mtu": 1500,
Expand All @@ -118,7 +118,7 @@ The following example configures a secondary network named `bond-tlb-net` with t
],
"ipam": {
"type": "host-local",
"subnet": "10.57.218.0/24",
"subnet": "10.57.218.0/24",
"routes": [{
"dst": "0.0.0.0/0"
}],
Expand Down
3 changes: 2 additions & 1 deletion modules/nw-multus-bridge-object.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ ifndef::microshift[]

|`name`
|`string`
|The value for the `name` parameter you provided previously for the CNO configuration.
|The mandatory, unique identifier assigned to this CNI network attachment definition. It is used by the container runtime to select the correct network configuration and serves as the key for persistent resource state management, such as IP address allocations.

endif::microshift[]

ifdef::microshift[]
Expand Down
2 changes: 1 addition & 1 deletion modules/nw-multus-dummy-device-object.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The following object describes the configuration parameters for the dummy CNI pl

|`name`
|`string`
|The value for the `name` parameter that you previously specified for the CNO configuration.
|The mandatory, unique identifier assigned to this CNI network attachment definition. It is used by the container runtime to select the correct network configuration and serves as the key for persistent resource state management, such as IP address allocations.

|`type`
|`string`
Expand Down
2 changes: 1 addition & 1 deletion modules/nw-multus-host-device-object.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The following object describes the configuration parameters for the host-device

|`name`
|`string`
|The value for the `name` parameter you provided previously for the CNO configuration.
|The mandatory, unique identifier assigned to this CNI network attachment definition. It is used by the container runtime to select the correct network configuration and serves as the key for persistent resource state management, such as IP address allocations.

|`type`
|`string`
Expand Down
2 changes: 1 addition & 1 deletion modules/nw-multus-ipvlan-object.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The following object describes the configuration parameters for the IPVLAN, `ipv

|`name`
|`string`
|The value for the `name` parameter you provided previously for the CNO configuration.
|The mandatory, unique identifier assigned to this CNI network attachment definition. It is used by the container runtime to select the correct network configuration and serves as the key for persistent resource state management, such as IP address allocations.

|`type`
|`string`
Expand Down
2 changes: 1 addition & 1 deletion modules/nw-multus-macvlan-object.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ The following object describes the configuration parameters for the MAC Virtual

|`name`
|`string`
|The value for the `name` parameter you provided previously for the CNO configuration.
|The mandatory, unique identifier assigned to this CNI network attachment definition. It is used by the container runtime to select the correct network configuration and serves as the key for persistent resource state management, such as IP address allocations.

|`type`
|`string`
Expand Down
2 changes: 1 addition & 1 deletion modules/nw-multus-tap-object.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ plugin:

|`name`
|`string`
|The value for the `name` parameter you provided previously for the CNO configuration.
|The mandatory, unique identifier assigned to this CNI network attachment definition. It is used by the container runtime to select the correct network configuration and serves as the key for persistent resource state management, such as IP address allocations.

|`type`
|`string`
Expand Down
2 changes: 1 addition & 1 deletion modules/nw-multus-vlan-object.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The following object describes the configuration parameters for the VLAN, `vlan`

|`name`
|`string`
|The value for the `name` parameter you provided previously for the CNO configuration.
|The mandatory, unique identifier assigned to this CNI network attachment definition. It is used by the container runtime to select the correct network configuration and serves as the key for persistent resource state management, such as IP address allocations.

|`type`
|`string`
Expand Down