2016-02-23 14:32:45 +00:00
|
|
|
# mitaka
|
|
|
|
###############################################################################
|
|
|
|
# [ WARNING ]
|
|
|
|
# Configuration file maintained by Juju. Local changes may be overwritten.
|
|
|
|
# Config managed by neutron-openvswitch charm
|
|
|
|
###############################################################################
|
|
|
|
[ovs]
|
|
|
|
enable_tunneling = True
|
|
|
|
local_ip = {{ local_ip }}
|
|
|
|
bridge_mappings = {{ bridge_mappings }}
|
2016-03-23 11:10:16 +00:00
|
|
|
{% if enable_dpdk -%}
|
|
|
|
datapath_type = netdev
|
2018-08-22 15:20:03 +00:00
|
|
|
vhostuser_socket_dir = /run/libvirt-vhost-user
|
2016-03-23 11:10:16 +00:00
|
|
|
{% endif -%}
|
2016-02-23 14:32:45 +00:00
|
|
|
|
|
|
|
[agent]
|
|
|
|
tunnel_types = {{ overlay_network_type }}
|
|
|
|
l2_population = {{ l2_population }}
|
|
|
|
enable_distributed_routing = {{ distributed_routing }}
|
2016-02-23 14:51:01 +00:00
|
|
|
prevent_arp_spoofing = {{ prevent_arp_spoofing }}
|
2016-02-23 14:32:45 +00:00
|
|
|
{% if veth_mtu -%}
|
|
|
|
veth_mtu = {{ veth_mtu }}
|
2016-02-23 14:51:01 +00:00
|
|
|
{% endif -%}
|
2017-07-05 03:21:33 +00:00
|
|
|
polling_interval = {{ polling_interval }}
|
2017-08-07 15:58:52 +00:00
|
|
|
{% if extension_drivers -%}
|
|
|
|
extensions = {{ extension_drivers }}
|
|
|
|
{% endif -%}
|
2016-02-23 14:32:45 +00:00
|
|
|
|
|
|
|
[securitygroup]
|
2016-03-23 11:10:16 +00:00
|
|
|
{% if neutron_security_groups and not enable_dpdk -%}
|
2016-02-23 14:32:45 +00:00
|
|
|
enable_security_group = True
|
2017-04-27 10:32:02 +00:00
|
|
|
firewall_driver = {{ firewall_driver }}
|
2016-02-23 14:32:45 +00:00
|
|
|
{% else -%}
|
|
|
|
enable_security_group = False
|
|
|
|
{% endif -%}
|