17cbdb50a2
ovsdb-timeout sets ovsdb_timeout in openvswitch_agent.ini, this option is used to determine when ovsdb commands should be marked as fail. This is helpful for large clouds or where the node is under pressure. Change-Id: I0b0e397691c49d3fcebdd30bbe9b160789acf3c3 Closes-Bug: #1849732
27 lines
820 B
INI
27 lines
820 B
INI
# queens
|
|
###############################################################################
|
|
# [ WARNING ]
|
|
# Configuration file maintained by Juju. Local changes may be overwritten.
|
|
###############################################################################
|
|
[ovs]
|
|
enable_tunneling = True
|
|
local_ip = {{ local_ip }}
|
|
bridge_mappings = {{ bridge_mappings }}
|
|
{%- if ovsdb_timeout and ovsdb_timeout > 0 %}
|
|
ovsdb_timeout = {{ovsdb_timeout}}
|
|
{%- endif %}
|
|
|
|
[agent]
|
|
tunnel_types = {{ overlay_network_type }}
|
|
l2_population = {{ l2_population }}
|
|
enable_distributed_routing = {{ enable_dvr }}
|
|
{% if veth_mtu -%}
|
|
veth_mtu = {{ veth_mtu }}
|
|
{% endif -%}
|
|
{% if extension_drivers -%}
|
|
extensions = {{ extension_drivers }}
|
|
{% endif %}
|
|
|
|
[securitygroup]
|
|
firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
|