~ionutbalutoiu/charms/trusty/neutron-api/next

« back to all changes in this revision

Viewing changes to templates/icehouse/ml2_conf.ini

  • Committer: Liam Young
  • Date: 2014-06-11 09:10:54 UTC
  • Revision ID: liam.young@canonical.com-20140611091054-qkw6g1bsl9efm1i8
Remove ovs plugin support as this is going to be baked into charm

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# icehouse
 
2
###############################################################################
 
3
# [ WARNING ]
 
4
# Configuration file maintained by Juju. Local changes may be overwritten.  
 
5
###############################################################################
 
6
[ml2]
 
7
type_drivers = gre,vxlan
 
8
tenant_network_types = gre,vxlan
 
9
mechanism_drivers = openvswitch
 
10
 
 
11
[ml2_type_gre]
 
12
tunnel_id_ranges = 1:1000
 
13
 
 
14
[ml2_type_vxlan]
 
15
vni_ranges = 1001:2000
 
16
 
 
17
[ovs]
 
18
enable_tunneling = True
 
19
local_ip = {{ local_ip }}
 
20
 
 
21
[agent]
 
22
tunnel_types = gre
 
23
 
 
24
[securitygroup]
 
25
{% if neutron_security_groups -%}
 
26
enable_security_group = True
 
27
firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
 
28
{% else -%}
 
29
enable_security_group = False
 
30
{% endif -%}