SR-IOV agent: allow to configure agent extensions

Closes-Bug: 1736687

Change-Id: I7979850d5d4babac745e3de969ccb10b1f550bf1
This commit is contained in:
Moshe Levi 2017-12-03 12:00:59 +02:00
parent cd54ff3c62
commit 635f24c78d
2 changed files with 11 additions and 0 deletions

View File

@ -57,6 +57,11 @@ parameters:
Example "eth1:4096,eth2:128"
type: comma_delimited_list
default: ""
NeutronSriovAgentExtensions:
default: ""
description: >
Comma-separated list of extensions enabled for the Neutron SR-IOV agents.
type: comma_delimited_list
resources:
@ -82,11 +87,13 @@ resources:
- neutron::agents::ml2::sriov::physical_device_mappings: NeutronPhysicalDevMappings
neutron::agents::ml2::sriov::exclude_devices: NeutronExcludeDevices
tripleo::host::sriov::number_of_vfs: NeutronSriovNumVFs
neutron::agents::ml2::sriov::extensions: NeutronSriovAgentExtensions
- values: {get_param: [RoleParameters]}
- values:
NeutronPhysicalDevMappings: {get_param: NeutronPhysicalDevMappings}
NeutronExcludeDevices: {get_param: NeutronExcludeDevices}
NeutronSriovNumVFs: {get_param: NeutronSriovNumVFs}
NeutronSriovAgentExtensions: {get_param: NeutronSriovAgentExtensions}
outputs:
role_data:

View File

@ -0,0 +1,4 @@
---
fixes:
- |
Allow to configure SR-IOV agent with agent extenstions.