Fixes vhostuser port prefix with ODL OVS host config

The incorrect prefix of 'vhu_' was being used for vhost user ports and
it should be simply 'vhu'.

Closes-Bug: 1722917

Change-Id: I960f85845ca5c99aa14a3291b8eea10806081624
Signed-off-by: Tim Rozet <trozet@redhat.com>
This commit is contained in:
Tim Rozet 2017-10-11 17:06:22 -04:00
parent 71ed52c6ae
commit 384967bb5d
2 changed files with 6 additions and 2 deletions

View File

@ -130,11 +130,11 @@ class neutron::plugins::ovs::opendaylight (
"vif_details": {\
"uuid": "${::ovs_uuid}",\
"has_datapath_type_netdev": true,\
"port_prefix": "vhu_",\
"port_prefix": "vhu",\
"vhostuser_socket_dir": "${vhostuser_socket_dir}",\
"vhostuser_ovs_plug": true,\
"vhostuser_mode": "${vhostuser_mode}",\
"vhostuser_socket": "${vhostuser_socket_dir}/vhu_\$PORT_ID"\
"vhostuser_socket": "${vhostuser_socket_dir}/vhu\$PORT_ID"\
}\
}],\
"allowed_network_types": ${json_network_types},\

View File

@ -0,0 +1,4 @@
---
fixes:
- |
Fixes vhostuser port prefix to be the correct value of 'vhu'.