Fixes the OvsVhostuserMode heat parameter
The mode was incorrectly defined as configuring the mode for OVS when it is really configuring the client/server mode for QEMU. A value of 'client' here will cause OVS to create the vhostuser socket, and actually make OVS the server. This type of port is deprecated so the default should be 'server' (QEMU creates the port). Closes-Bug: 1762473 Change-Id: I7cd34b30f54766fe35e4a40a57b278166d0197cb Signed-off-by: Tim Rozet <trozet@redhat.com>
This commit is contained in:
parent
2ec5bd01dc
commit
2ecf3ac88b
@ -50,11 +50,12 @@ parameters:
|
||||
tags:
|
||||
- role_specific
|
||||
OvsVhostuserMode:
|
||||
description: Specify the mode for OVS with vhostuser port creation. In
|
||||
client mode, the hypervisor will be responsible for creating
|
||||
vhostuser sockets. In server mode, OVS will create them.
|
||||
description: Specify the mode for QEMU with vhostuser port creation. In
|
||||
client mode, openvswitch will be responsible for creating
|
||||
vhostuser sockets. In server mode, the hypervisor will create
|
||||
them. Note, 'client' mode is deprecated.
|
||||
type: string
|
||||
default: "client"
|
||||
default: "server"
|
||||
constraints:
|
||||
- allowed_values: [ 'client', 'server' ]
|
||||
tags:
|
||||
@ -323,4 +324,4 @@ outputs:
|
||||
- service: ovs
|
||||
network: {get_param: [ServiceNetMap, OpendaylightApiNetwork]}
|
||||
type: node
|
||||
- null
|
||||
- null
|
||||
|
@ -0,0 +1,10 @@
|
||||
---
|
||||
fixes:
|
||||
- |
|
||||
Fixes default of vhostuser_mode in ODL-OVS to be server, and clarifies
|
||||
the configuration parameter. See
|
||||
https://bugs.launchpad.net/tripleo/+bug/1762473
|
||||
deprecations:
|
||||
- |
|
||||
Using 'client' for OvsVhostuserMode parameter. See 'vhost-user' section
|
||||
at http://docs.openvswitch.org/en/latest/topics/dpdk/vhost-user/
|
Loading…
Reference in New Issue
Block a user