openstack-helm/neutron/values_overrides/dpdk.yaml
Vladimir Kozhukalov 17ca3983c2 Update neutron chart to enable dpdk tests
Running dpdk test job on a sinlge node env
does not require a real hardware dpdk interfaces
to be attached to the tunnel bridge. Let's
make the list of dpdk interfaces empty which
will allow us to test the Openvswitch in user space
but not touch real hardware.

Change-Id: I2f9d954258451f64eb87d03affc079b71b00f7bd
Co-Authored-By: Arina Stebenkova <astebenkova@mirantis.com>
2024-02-13 22:21:07 -06:00

27 lines
554 B
YAML

---
network:
interface:
tunnel: null
conf:
plugins:
openvswitch_agent:
agent:
tunnel_types: vxlan
ovs:
bridge_mappings: public:br-ex
datapath_type: netdev
vhostuser_socket_dir: /var/run/openvswitch/vhostuser
ovs_dpdk:
enabled: true
driver: uio_pci_generic
nics: []
# CHANGE-ME: modify pci_id according to your hardware
# - name: dpdk0
# pci_id: '0000:05:00.0'
# bridge: br-tun
# migrate_ip: true
bridges:
- name: br-tun
bonds: []
...