Merge "Add posibilities to set ovn_openflow_probe_interval for controller" into stable/stein

This commit is contained in:
Zuul 2019-10-29 00:17:06 +00:00 committed by Gerrit Code Review
commit 5c365429f2
2 changed files with 15 additions and 0 deletions

View File

@ -78,6 +78,12 @@ parameters:
description: Probe interval in ms
type: number
default: 60000
OVNOpenflowProbeInterval:
description: >
The inactivity probe interval of the OpenFlow connection to the
OpenvSwitch integration bridge, in seconds.
type: number
default: 60
conditions:
force_config_drive: {equals: [{get_param: OVNMetadataEnabled}, false]}
@ -124,6 +130,7 @@ outputs:
ovn::controller::hostname: "%{hiera('fqdn_canonical')}"
ovn::controller::ovn_remote_probe_interval: {get_param: OVNRemoteProbeInterval}
tripleo::profile::base::neutron::agents::ovn::ovn_db_host: {get_param: [EndpointMap, OvnDbInternal, host_nobrackets]}
ovn::controller::ovn_openflow_probe_interval: {get_param: OVNOpenflowProbeInterval}
tripleo::ovn_controller::firewall_rules:
'118 neutron vxlan networks':
proto: 'udp'

View File

@ -0,0 +1,8 @@
---
features:
- |
Added new heat param OVNOpenflowProbeInterval to set ovn_openflow_probe_interval
which is inactivity probe interval of the OpenFlow connection to the OpenvSwitch
integration bridge, in seconds. If the value is zero, it disables the connection
keepalive feature, by default this value is set on 60s.
If the value is nonzero, then it will be forced to a value of at least 5s.