~james-page/charms/trusty/nova-cloud-controller/network-splits-https

« back to all changes in this revision

Viewing changes to templates/nova.conf

  • Committer: Adam Gandelman
  • Date: 2013-08-12 15:45:37 UTC
  • mto: (51.1.4 nova-cloud-controller)
  • mto: This revision was merged to the branch mainline in revision 52.
  • Revision ID: adamg@ubuntu.com-20130812154537-bhw41uois9xd8zi3
Checkin templates.

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
dhcpbridge_flagfile=/etc/nova/nova.conf
 
7
dhcpbridge=/usr/bin/nova-dhcpbridge
 
8
logdir=/var/log/nova
 
9
state_path=/var/lib/nova
 
10
lock_path=/var/lock/nova
 
11
force_dhcp_release=True
 
12
iscsi_helper=tgtadm
 
13
libvirt_use_virtio_for_bridges=True
 
14
connection_type=libvirt
 
15
root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf
 
16
verbose=True
 
17
ec2_private_dns_show_ip=True
 
18
api_paste_config=/etc/nova/api-paste.ini
 
19
volumes_path=/var/lib/nova/volumes
 
20
{% if database_host -%}
 
21
sql_connection = mysql://{{ database_user }}:{{ database_password }}@{{ database_host }}/{{ database }}
 
22
{% endif -%}
 
23
{% if rabbitmq_host -%}
 
24
rabbit_host = {{ rabbitmq_host }}
 
25
rabbit_userid = {{ rabbitmq_user }}
 
26
rabbit_password = {{ rabbitmq_password }}
 
27
rabbit_virtual_host = {{ rabbitmq_virtual_host }}
 
28
{% endif -%}
 
29
{% if glance_api_servers -%}
 
30
glance_api_servers = {{ glance_api_servers }}
 
31
{% endif -%}
 
32
{% if rbd_pool -%}
 
33
rbd_pool = {{ rbd_pool }}
 
34
rbd_user = {{ rbd_user }}
 
35
rbd_secret_uuid = {{ rbd_secret_uuid }}
 
36
{% endif -%}
 
37
{% if quantum_plugin and quantum_plugin == 'ovs' -%}
 
38
libvirt_vif_driver = {{ libvirt_vif_driver }}
 
39
libvirt_user_virtio_for_bridges =  True
 
40
{% if quantum_security_groups -%}
 
41
security_group_api = quantum
 
42
nova_firewall_driver = nova.virt.firewall.NoopFirewallDriver
 
43
{% endif -%}
 
44
{% endif -%}
 
45
{% if network_manager_config -%}
 
46
{% for key, value in network_manager_config.iteritems() -%}
 
47
{{ key }} = {{ value }}
 
48
{% endfor -%}
 
49
{% endif -%}
 
50
{% if volume_service_config -%}
 
51
{% for key, value in volume_service_config.iteritems() -%}
 
52
{{ key }} = {{ value }}
 
53
{% endfor -%}
 
54
{% endif -%}
 
55
{% if user_config_flags -%}
 
56
{% for key, value in user_config_flags.iteritems() -%}
 
57
{{ key }} = {{ value }}
 
58
{% endfor -%}
 
59
{% endif -%}