~corey.bryant/charms/trusty/quantum-gateway/end-of-life

« back to all changes in this revision

Viewing changes to templates/juno/l3_agent.ini

  • Committer: Corey Bryant
  • Date: 2015-07-16 19:59:31 UTC
  • Revision ID: corey.bryant@canonical.com-20150716195931-2p7sloju2305jsfx
quantum-gateway charm has reached end-of-life

Strip all functionality from charm and issue status message
reporting end-of-life and pointing users to neutron-gateway charm.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
###############################################################################
2
 
# [ WARNING ]
3
 
# Configuration file maintained by Juju. Local changes may be overwritten.
4
 
###############################################################################
5
 
[DEFAULT]
6
 
interface_driver = neutron.agent.linux.interface.OVSInterfaceDriver
7
 
auth_url = {{ service_protocol }}://{{ keystone_host }}:{{ service_port }}/v2.0
8
 
auth_region = {{ region }}
9
 
admin_tenant_name = {{ service_tenant }}
10
 
admin_user = {{ service_username }}
11
 
admin_password = {{ service_password }}
12
 
root_helper = sudo /usr/bin/neutron-rootwrap /etc/neutron/rootwrap.conf
13
 
handle_internal_only_routers = {{ handle_internal_only_router }}
14
 
{% if plugin == 'n1kv' %}
15
 
l3_agent_manager = neutron.agent.l3_agent.L3NATAgentWithStateReport
16
 
external_network_bridge = br-int
17
 
ovs_use_veth = False
18
 
use_namespaces = True
19
 
{% else %}
20
 
ovs_use_veth = True
21
 
{% endif %}
22
 
{% if ext_net_id -%}
23
 
gateway_external_network_id = {{ ext_net_id }}
24
 
{% endif -%}
25
 
agent_mode = {{ agent_mode }}