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

« back to all changes in this revision

Viewing changes to templates/grizzly/nova.conf

  • 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
 
[DEFAULT]
2
 
logdir=/var/log/nova
3
 
state_path=/var/lib/nova
4
 
lock_path=/var/lock/nova
5
 
root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf
6
 
verbose=True
7
 
api_paste_config=/etc/nova/api-paste.ini
8
 
enabled_apis=metadata
9
 
multi_host=True
10
 
{% include "parts/database" %}
11
 
quantum_metadata_proxy_shared_secret={{ shared_secret }}
12
 
service_quantum_metadata_proxy=True
13
 
# Access to message bus
14
 
{% include "parts/rabbitmq" %}
15
 
# Access to quantum API services
16
 
network_api_class=nova.network.quantumv2.api.API
17
 
quantum_auth_strategy=keystone
18
 
quantum_url={{ quantum_url }}
19
 
quantum_admin_tenant_name={{ service_tenant }}
20
 
quantum_admin_username={{ service_username }}
21
 
quantum_admin_password={{ service_password }}
22
 
quantum_admin_auth_url={{ service_protocol }}://{{ keystone_host }}:{{ service_port }}/v2.0