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>
(cherry picked from commit 2ecf3ac88b)
This commit is contained in:
Tim Rozet 2018-04-09 12:40:45 -04:00 committed by Saravanan KR
parent b937f3589f
commit c80ce85647
2 changed files with 16 additions and 5 deletions

View File

@ -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:
@ -316,4 +317,4 @@ outputs:
- service: ovs
network: {get_param: [ServiceNetMap, OpendaylightApiNetwork]}
type: node
- null
- null

View File

@ -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/