Skip to content

Commit d0f1265

Browse files
committed
Set ovn-egress-iface=true for br-ex members
In order to fix OSPRH-17551 and make BW limits properly applied to physical ports (ports from neutron VLAN and flat networks), the br-ex member interfaces need to be configured with ovn-egress-iface=true. This PR applies the change to all uni jobs.
1 parent 7d67cef commit d0f1265

File tree

12 files changed

+48
-0
lines changed

12 files changed

+48
-0
lines changed

examples/dt/uni01alpha/edpm/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ data:
4949
name: nic2
5050
mtu: {{ min_viable_mtu }}
5151
primary: true
52+
# this ovs_extra configuration fixes OSPRH-17551, but it will
53+
# be not needed when FDP-1472 is resolved
54+
ovs_extra:
55+
- "set interface eth1 external-ids:ovn-egress-iface=true"
5256
{% for network in nodeset_networks %}
5357
- type: vlan
5458
mtu: {{ lookup('vars', networks_lower[network] ~ '_mtu') }}

examples/dt/uni01alpha/networker/nodeset/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ data:
6565
mtu: {{ min_viable_mtu }}
6666
# force the MAC address of the bridge to this interface
6767
primary: true
68+
# this ovs_extra configuration fixes OSPRH-17551, but it will
69+
# be not needed when FDP-1472 is resolved
70+
ovs_extra:
71+
- "set interface eth1 external-ids:ovn-egress-iface=true"
6872
{% for network in nodeset_networks %}
6973
- type: vlan
7074
mtu: {{ lookup('vars', networks_lower[network] ~ '_mtu') }}

examples/dt/uni02beta/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ data:
4949
name: nic2
5050
mtu: {{ min_viable_mtu }}
5151
primary: true
52+
# this ovs_extra configuration fixes OSPRH-17551, but it will
53+
# be not needed when FDP-1472 is resolved
54+
ovs_extra:
55+
- "set interface eth1 external-ids:ovn-egress-iface=true"
5256
{% for network in nodeset_networks %}
5357
- type: vlan
5458
mtu: {{ lookup('vars', networks_lower[network] ~ '_mtu') }}

examples/dt/uni04delta-ipv6/edpm-pre-ceph/nodeset/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ data:
5151
mtu: {{ min_viable_mtu }}
5252
# force the MAC address of the bridge to this interface
5353
primary: true
54+
# this ovs_extra configuration fixes OSPRH-17551, but it will
55+
# be not needed when FDP-1472 is resolved
56+
ovs_extra:
57+
- "set interface eth1 external-ids:ovn-egress-iface=true"
5458
{% for network in nodeset_networks %}
5559
- type: vlan
5660
mtu: {{ lookup('vars', networks_lower[network] ~ '_mtu') }}

examples/dt/uni04delta-ipv6/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ data:
5959
name: nic2
6060
mtu: {{ min_viable_mtu }}
6161
primary: true
62+
# this ovs_extra configuration fixes OSPRH-17551, but it will
63+
# be not needed when FDP-1472 is resolved
64+
ovs_extra:
65+
- "set interface eth1 external-ids:ovn-egress-iface=true"
6266
{% for network in nodeset_networks %}
6367
- type: vlan
6468
mtu: {{ lookup('vars', networks_lower[network] ~ '_mtu') }}

examples/dt/uni04delta/edpm-pre-ceph/nodeset/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@ data:
5151
mtu: {{ min_viable_mtu }}
5252
# force the MAC address of the bridge to this interface
5353
primary: true
54+
# this ovs_extra configuration fixes OSPRH-17551, but it will
55+
# be not needed when FDP-1472 is resolved
56+
ovs_extra:
57+
- "set interface eth1 external-ids:ovn-egress-iface=true"
5458
{% for network in nodeset_networks %}
5559
- type: vlan
5660
mtu: {{ lookup('vars', networks_lower[network] ~ '_mtu') }}

examples/dt/uni04delta/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,10 @@ data:
5959
name: nic2
6060
mtu: {{ min_viable_mtu }}
6161
primary: true
62+
# this ovs_extra configuration fixes OSPRH-17551, but it will
63+
# be not needed when FDP-1472 is resolved
64+
ovs_extra:
65+
- "set interface eth1 external-ids:ovn-egress-iface=true"
6266
{% for network in nodeset_networks %}
6367
- type: vlan
6468
mtu: {{ lookup('vars', networks_lower[network] ~ '_mtu') }}

examples/dt/uni05epsilon/edpm-pre-ceph/nodeset/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ data:
5050
mtu: {{ min_viable_mtu }}
5151
# force the MAC address of the bridge to this interface
5252
primary: true
53+
# this ovs_extra configuration fixes OSPRH-17551, but it will
54+
# be not needed when FDP-1472 is resolved
55+
ovs_extra:
56+
- "set interface eth1 external-ids:ovn-egress-iface=true"
5357
{% for network in nodeset_networks %}
5458
- type: vlan
5559
mtu: {{ lookup('vars', networks_lower[network] ~ '_mtu') }}

examples/dt/uni05epsilon/nodeset2/edpm-pre-ceph/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ data:
5050
mtu: {{ min_viable_mtu }}
5151
# force the MAC address of the bridge to this interface
5252
primary: true
53+
# this ovs_extra configuration fixes OSPRH-17551, but it will
54+
# be not needed when FDP-1472 is resolved
55+
ovs_extra:
56+
- "set interface eth1 external-ids:ovn-egress-iface=true"
5357
{% for network in nodeset_networks %}
5458
- type: vlan
5559
mtu: {{ lookup('vars', networks_lower[network] ~ '_mtu') }}

examples/dt/uni06zeta/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ data:
4949
name: nic2
5050
mtu: {{ min_viable_mtu }}
5151
primary: true
52+
# this ovs_extra configuration fixes OSPRH-17551, but it will
53+
# be not needed when FDP-1472 is resolved
54+
ovs_extra:
55+
- "set interface eth1 external-ids:ovn-egress-iface=true"
5256
{% for network in nodeset_networks %}
5357
- type: vlan
5458
mtu: {{ lookup('vars', networks_lower[network] ~ '_mtu') }}

0 commit comments

Comments
 (0)