Merge "Add NeutronPermittedEthertypes on OVS agent" into stable/rocky

This commit is contained in:
Zuul 2019-10-11 18:43:14 +00:00 committed by Gerrit Code Review
commit 25ca3c3ac9
2 changed files with 16 additions and 0 deletions

View File

@ -100,9 +100,15 @@ parameters:
Set or un-set the tunnel header checksum on outgoing IP packet
carrying GRE/VXLAN tunnel.
type: boolean
NeutronPermittedEthertypes:
default: []
description: |
Set additional ethertypes to to be configured on neutron firewalls.
type: comma_delimited_list
conditions:
no_firewall_driver: {equals : [{get_param: NeutronOVSFirewallDriver}, '']}
ethertypes_unset: {equals : [{get_param: NeutronPermittedEthertypes}, []]}
resources:
@ -173,6 +179,11 @@ outputs:
- no_firewall_driver
- {}
- neutron::agents::ml2::ovs::firewall_driver: {get_param: NeutronOVSFirewallDriver}
-
if:
- ethertypes_unset
- {}
- neutron::agents::ml2::ovs::permitted_ethertypes: {get_param: NeutronPermittedEthertypes}
service_config_settings:
collectd:
tripleo.collectd.plugins.neutron_ovs_agent:

View File

@ -0,0 +1,5 @@
---
features:
- |
Added NeutronPermittedEthertypes to allow configuring additional ethertypes
on neutron security groups for L2 agents that support it.