~freyes/+junk/lp1387390

« back to all changes in this revision

Viewing changes to templates/folsom/nova.conf

Checkin templates.

Show diffs side-by-side

added added

removed removed

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