Skip to content

Commit 4065c51

Browse files
authored
Merge pull request #95180 from sjhala-ccs/cnv-64163
CNV-64163: Fixed namespace value in localnet UDN doc
2 parents f26d44d + 997e7e8 commit 4065c51

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

modules/virt-attaching-vm-to-secondary-udn.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ apiVersion: kubevirt.io/v1
2121
kind: VirtualMachine
2222
metadata:
2323
name: example-vm
24-
namespace: my-namespace # <1>
24+
namespace: red # <1>
2525
spec:
2626
template:
2727
spec:

modules/virt-creating-secondary-localnet-udn.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ spec:
2929
desiredState:
3030
ovn:
3131
bridge-mappings:
32-
- localnet: tenantblue # <3>
32+
- localnet: localnet1 # <3>
3333
bridge: br-ex # <4>
3434
state: present # <5>
3535
----
3636
<1> The name of the configuration object.
3737
<2> Specifies the nodes to which the node network configuration policy is applied. The recommended node selector value is `node-role.kubernetes.io/worker: ''`.
38-
<3> The name of the additional network from which traffic is forwarded to the OVS bridge. This attribute must match the value of the `spec.network.localnet.physicalNetworkName` field of the `ClusterUserDefinedNetwork` object that defines the OVN-Kubernetes additional network. This example uses the name `tenantblue`.
38+
<3> The name of the additional network from which traffic is forwarded to the OVS bridge. This attribute must match the value of the `spec.network.localnet.physicalNetworkName` field of the `ClusterUserDefinedNetwork` object that defines the OVN-Kubernetes additional network. This example uses the name `localnet1`.
3939
<4> The name of the OVS bridge on the node. This value is required if the `state` attribute is `present` or not specified.
4040
<5> The state of the mapping. Must be either `present` to add the mapping or `absent` to remove the mapping. The default value is `present`.
4141
+
@@ -74,7 +74,7 @@ spec:
7474
topology: Localnet # <5>
7575
localnet:
7676
role: Secondary # <6>
77-
physicalNetworkName: tenantblue # <7>
77+
physicalNetworkName: localnet1 # <7>
7878
ipam:
7979
mode: Disabled # <8>
8080
# ...

modules/virt-creating-secondary-udn-namespace.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You can create a namespace to be used with an existing secondary cluster-scoped
2222
apiVersion: v1
2323
kind: Namespace
2424
metadata:
25-
name: cudn_namespace
25+
name: red
2626
# ...
2727
----
2828

0 commit comments

Comments
 (0)