~tribaal/charms/trusty/nova-compute/sync-charm-helpers

« back to all changes in this revision

Viewing changes to templates/folsom/ovs_quantum_plugin.ini

  • Committer: James Page
  • Date: 2013-10-15 12:04:13 UTC
  • mfrom: (46.1.83 nova-compute)
  • Revision ID: james.page@canonical.com-20131015120413-grclbw2ot5gbgp5r
Update of all Havana / Saucy / python-redux work:

* Full python rewrite using new OpenStack charm-helpers.

* Test coverage

* Havana support

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# grizzly
 
2
###############################################################################
 
3
# [ WARNING ]
 
4
# Configuration file maintained by Juju. Local changes may be overwritten.
 
5
###############################################################################
 
6
[OVS]
 
7
tunnel_id_ranges = 1:1000
 
8
tenant_network_type = gre
 
9
enable_tunneling = True
 
10
local_ip = {{ local_ip }}
 
11
 
 
12
[DATABASE]
 
13
{% if database_host -%}
 
14
sql_connection = mysql://{{ database_user }}:{{ database_password }}@{{ database_host }}/{{ database }}?charset=utf8
 
15
reconnect_interval = 2
 
16
{% else -%}
 
17
connection = sqlite:////var/lib/quantum/quantum.sqlite
 
18
{% endif -%}
 
19
 
 
20
[AGENT]
 
21
polling_interval = 2
 
22
 
 
23
[SECURITYGROUP]
 
24
{% if neutron_security_groups -%}
 
25
firewall_driver = quantum.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
 
26
{% endif -%}
 
27