Removed fuel from Genesis master since fuel has moved to repo fuel.
[genesis.git] / compass / deploy / ansible / roles / nova-controller / 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=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 osapi_compute_listen={{ internal_ip }}
30 metadata_listen={{ internal_ip }}
31
32 my_ip = {{ internal_ip }}
33 vnc_enabled = True
34 vncserver_listen = {{ internal_ip }}
35 vncserver_proxyclient_address = {{ internal_ip }}
36 novncproxy_base_url = http://{{ HA_VIP }}:6080/vnc_auto.html
37
38 novncproxy_host = {{ internal_ip }}
39 novncproxy_port = 6080
40
41 network_api_class = nova.network.neutronv2.api.API
42 linuxnet_interface_driver = nova.network.linux_net.LinuxOVSInterfaceDriver
43 firewall_driver = nova.virt.firewall.NoopFirewallDriver
44 security_group_api = neutron
45
46 instance_usage_audit = True
47 instance_usage_audit_period = hour
48 notify_on_state_change = vm_and_task_state
49 notification_driver = nova.openstack.common.notifier.rpc_notifier
50 notification_driver = ceilometer.compute.nova_notifier
51
52 [database]
53 # The SQLAlchemy connection string used to connect to the database
54 connection = mysql://nova:{{ NOVA_DBPASS }}@{{ db_host }}/nova
55
56 [keystone_authtoken]
57 auth_uri = http://{{ HA_VIP }}:5000/2.0
58 identity_uri = http://{{ HA_VIP }}:35357
59 admin_tenant_name = service
60 admin_user = nova
61 admin_password = {{ NOVA_PASS }}
62
63 [glance]
64 host = {{ HA_VIP }}
65
66 [neutron]
67 url = http://{{ HA_VIP }}:9696
68 auth_strategy = keystone
69 admin_tenant_name = service
70 admin_username = neutron
71 admin_password = {{ NEUTRON_PASS }}
72 admin_auth_url = http://{{ HA_VIP }}:35357/v2.0