-
Bug
-
Resolution: Done
-
Normal
-
4.14, 4.15, 4.16, 4.17, 4.18, 4.19
-
None
-
Quality / Stability / Reliability
-
False
-
-
3
-
Important
-
None
-
None
-
None
-
None
-
OSDOCS Sprint 273, OSDOCS Sprint 274, OSDOCS Sprint 275
-
3
-
None
-
None
-
None
-
None
-
None
-
None
-
None
Description of problem:
NAD example showed in https://docs.redhat.com/en/documentation/openshift_container_platform/4.17/html/networking/multiple-networks#configuration-localnet-switched-topology_configuring-additional-network-ovnk is using a wrong value in the `name` field:
From the Doc:
{"cniVersion": "0.3.1","name": "ns1-localnet-network", <---------- wrong value"type": "ovn-k8s-cni-overlay","topology":"localnet","physicalNetworkName": "localnet1","subnets": "202.10.130.112/28","vlanID": 33,"mtu": 1500,"netAttachDefName": "ns1/localnet-network","excludeSubnets": "10.100.200.0/29"}
Corrected version:
{"cniVersion": "0.3.1","name": "localnet1", <------- correct value"type": "ovn-k8s-cni-overlay","topology":"localnet","physicalNetworkName": "localnet1","subnets": "202.10.130.112/28","vlanID": 33,"mtu": 1500,"netAttachDefName": "ns1/localnet-network","excludeSubnets": "10.100.200.0/29"}
- This applies to all examples in the Doc (the value can be localnet1 or localnet2 according to the NNCP configuration combined with this NAD)
- If this is also mentioned in older ocp version Docs, it should be corrected.