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

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

View File

@ -96,10 +96,16 @@ 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:
@ -178,6 +184,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:
fluentd:
tripleo_fluentd_groups_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.