Merge "Add posibilities to set tunnel_csum in ovs agent"

This commit is contained in:
Zuul 2018-10-11 15:54:59 +00:00 committed by Gerrit Code Review
commit 77e4ee3a8e
2 changed files with 13 additions and 0 deletions

View File

@ -87,6 +87,12 @@ parameters:
type: boolean
tags:
- role_specific
NeutronOVSTunnelCsum:
default: false
description: |
Set or un-set the tunnel header checksum on outgoing IP packet
carrying GRE/VXLAN tunnel.
type: boolean
conditions:
no_firewall_driver: {equals : [{get_param: NeutronOVSFirewallDriver}, '']}
@ -142,6 +148,7 @@ outputs:
neutron::agents::ml2::ovs::arp_responder: {get_param: NeutronEnableARPResponder}
neutron::agents::ml2::ovs::tunnel_types: {get_param: NeutronTunnelTypes}
neutron::agents::ml2::ovs::extensions: {get_param: NeutronAgentExtensions}
neutron::agents::ml2::ovs::tunnel_csum: {get_param: NeutronOVSTunnelCsum}
# NOTE: bind IP is found in hiera replacing the network name with the
# local node IP for the given network; replacement examples
# (eg. for internal_api):

View File

@ -0,0 +1,6 @@
---
features:
- |
Adds posibilities to set 'neutron::agents::ml2::ovs::tunnel_csum' via NeutronOVSTunnelCsum
in heat template. This param set or un-set the tunnel header checksum on
outgoing IP packet carrying GRE/VXLAN tunnel in ovs agent.