diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/nics-template.yaml.jinja2 | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/build/nics-template.yaml.jinja2 b/build/nics-template.yaml.jinja2 index bdf26cb0..a0333149 100644 --- a/build/nics-template.yaml.jinja2 +++ b/build/nics-template.yaml.jinja2 @@ -157,17 +157,18 @@ resources: {%- if 'private_network' in enabled_networks and vlans['private_network'] == 'native' %} {%- if ovs_dpdk_bridge == 'br-phy' %} - - type: interface - name: nic{{ nic_index }}{% set nic_index = nic_index + 1 %} - use_dhcp: false - - - type: ovs_bridge name: {{ ovs_dpdk_bridge }} use_dhcp: false addresses: - ip_netmask: {get_param: TenantIpSubnet} + members: + - + type: interface + name: nic{{ nic_index }}{% set nic_index = nic_index + 1 %} + # force the MAC address of the bridge to this interface + primary: true - type: ovs_bridge name: br-tun |