Add posibilities to set tunnel_csum in ovs agent

Change-Id: I41e0babbe55711d1aef971c0134c6f349a40ae94
Closes-Bug: 1794268
Depends-On: https://review.openstack.org/605032/
This commit is contained in:
Kamil Sambor 2018-09-25 12:32:43 +02:00
parent 600e732ef8
commit d3a56e4522
2 changed files with 13 additions and 0 deletions

View File

@ -87,6 +87,12 @@ parameters:
type: boolean type: boolean
tags: tags:
- role_specific - 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: conditions:
no_firewall_driver: {equals : [{get_param: NeutronOVSFirewallDriver}, '']} 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::arp_responder: {get_param: NeutronEnableARPResponder}
neutron::agents::ml2::ovs::tunnel_types: {get_param: NeutronTunnelTypes} neutron::agents::ml2::ovs::tunnel_types: {get_param: NeutronTunnelTypes}
neutron::agents::ml2::ovs::extensions: {get_param: NeutronAgentExtensions} 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 # NOTE: bind IP is found in hiera replacing the network name with the
# local node IP for the given network; replacement examples # local node IP for the given network; replacement examples
# (eg. for internal_api): # (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.