Add posibilities to set tunnel_csum in ovs agent

Change-Id: I41e0babbe55711d1aef971c0134c6f349a40ae94
Closes-Bug: 1794268
Depends-On: https://review.openstack.org/609922/
(cherry picked from commit d3a56e4522)
This commit is contained in:
Kamil Sambor 2018-09-25 12:32:43 +02:00
parent 9a2715afa5
commit bae445a39d
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.