diff --git a/puppet/services/neutron-ovs-agent.yaml b/puppet/services/neutron-ovs-agent.yaml index 8e51cc04c5..4d648f17e4 100644 --- a/puppet/services/neutron-ovs-agent.yaml +++ b/puppet/services/neutron-ovs-agent.yaml @@ -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): diff --git a/releasenotes/notes/bug-1794268-0f875aa640b4246e.yaml b/releasenotes/notes/bug-1794268-0f875aa640b4246e.yaml new file mode 100644 index 0000000000..4bfdacab78 --- /dev/null +++ b/releasenotes/notes/bug-1794268-0f875aa640b4246e.yaml @@ -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. \ No newline at end of file