Merge "Add a ovsdb_timeout variable for better configuration"
This commit is contained in:
commit
2bd945b0f6
@ -530,6 +530,8 @@ neutron_tls_proxy_extra_volumes: "{{ neutron_extra_volumes }}"
|
||||
dhcp_agents_per_network: 2
|
||||
max_l3_agents_per_router: 3
|
||||
|
||||
ovsdb_timeout: 10
|
||||
|
||||
neutron_logging_debug: "{{ openstack_logging_debug }}"
|
||||
|
||||
openstack_neutron_auth: "{{ openstack_auth }}"
|
||||
|
@ -19,3 +19,4 @@ dhcp_override_mac = {{ vmware_dvs_dhcp_override_mac }}
|
||||
|
||||
[ovs]
|
||||
ovsdb_connection = tcp:127.0.0.1:{{ ovsdb_port }}
|
||||
ovsdb_timeout = {{ ovsdb_timeout }}
|
||||
|
@ -28,3 +28,4 @@ vpn_device_driver = {{ vpn_device_driver }}
|
||||
|
||||
[ovs]
|
||||
ovsdb_connection = tcp:127.0.0.1:{{ ovsdb_port }}
|
||||
ovsdb_timeout = {{ ovsdb_timeout }}
|
||||
|
@ -10,7 +10,8 @@ log_dir = /var/log/kolla/neutron
|
||||
metadata_workers = 2
|
||||
|
||||
[ovs]
|
||||
ovsdb_connection = tcp:127.0.0.1:6640
|
||||
ovsdb_connection = tcp:127.0.0.1:{{ ovsdb_port }}
|
||||
ovsdb_timeout = {{ ovsdb_timeout }}
|
||||
|
||||
[ovn]
|
||||
ovn_nb_connection = {{ ovn_nb_connection }}
|
||||
|
@ -19,6 +19,7 @@ bridge_mappings = {% for bridge in neutron_bridge_name.split(',') %}physnet{{ lo
|
||||
{% endif %}
|
||||
datapath_type = {{ ovs_datapath }}
|
||||
ovsdb_connection = tcp:127.0.0.1:{{ ovsdb_port }}
|
||||
ovsdb_timeout = {{ ovsdb_timeout }}
|
||||
local_ip = {{ tunnel_interface_address }}
|
||||
{% if enable_nova_fake | bool %}
|
||||
integration_bridge = br-int-{{ item }}
|
||||
|
Loading…
Reference in New Issue
Block a user