4988cb036c4153b640df54ce52312665f6005114
[genesis.git] / compass / deploy / ansible / roles / neutron-compute / templates / nova.conf
1 [DEFAULT]
2 dhcpbridge_flagfile=/etc/nova/nova.conf
3 dhcpbridge=/usr/bin/nova-dhcpbridge
4 logdir=/var/log/nova
5 state_path=/var/lib/nova
6 lock_path=/var/lock/nova
7 force_dhcp_release=True
8 iscsi_helper=tgtadm
9 libvirt_use_virtio_for_bridges=True
10 connection_type=libvirt
11 root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf
12 verbose={{ VERBOSE}}
13 debug={{ DEBUG }}
14 ec2_private_dns_show_ip=True
15 api_paste_config=/etc/nova/api-paste.ini
16 volumes_path=/var/lib/nova/volumes
17 enabled_apis=ec2,osapi_compute,metadata
18
19 vif_plugging_is_fatal: false
20 vif_plugging_timeout: 0
21
22 auth_strategy = keystone
23
24 rpc_backend = rabbit
25 rabbit_host = {{ rabbit_host }}
26 rabbit_userid = {{ RABBIT_USER }}
27 rabbit_password = {{ RABBIT_PASS }}
28
29 my_ip = {{ internal_ip }}
30 vnc_enabled = True
31 vncserver_listen = {{ internal_ip }}
32 vncserver_proxyclient_address = {{ internal_ip }}
33 novncproxy_base_url = http://{{ HA_VIP }}:6080/vnc_auto.html
34
35 novncproxy_host = {{ internal_ip }}
36 novncproxy_port = 6080
37
38 network_api_class = nova.network.neutronv2.api.API
39 linuxnet_interface_driver = nova.network.linux_net.LinuxOVSInterfaceDriver
40 firewall_driver = nova.virt.firewall.NoopFirewallDriver
41 security_group_api = neutron
42
43 instance_usage_audit = True
44 instance_usage_audit_period = hour
45 notify_on_state_change = vm_and_task_state
46 notification_driver = nova.openstack.common.notifier.rpc_notifier
47 notification_driver = ceilometer.compute.nova_notifier
48
49 [database]
50 # The SQLAlchemy connection string used to connect to the database
51 connection = mysql://nova:{{ NOVA_DBPASS }}@{{ db_host }}/nova
52
53 [conductor]
54 manager = nova.conductor.manager.ConductorManager
55 topic = conductor
56
57 [keystone_authtoken]
58 auth_uri = http://{{ HA_VIP }}:5000/2.0
59 identity_uri = http://{{ HA_VIP }}:35357
60 admin_tenant_name = service
61 admin_user = nova
62 admin_password = {{ NOVA_PASS }}
63
64 [glance]
65 host = {{ HA_VIP }}
66
67 [neutron]
68 url = http://{{ HA_VIP }}:9696
69 auth_strategy = keystone
70 admin_tenant_name = service
71 admin_username = neutron
72 admin_password = {{ NEUTRON_PASS }}
73 admin_auth_url = http://{{ HA_VIP }}:35357/v2.0