Merge "SR-IOV agent: allow to configure agent extensions" into stable/pike

This commit is contained in:
Zuul 2017-12-07 09:18:56 +00:00 committed by Gerrit Code Review
commit 0c569d5a0b
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.