2 dhcpbridge_flagfile=/etc/nova/nova.conf
3 dhcpbridge=/usr/bin/nova-dhcpbridge
5 state_path=/var/lib/nova
6 lock_path=/var/lock/nova
7 force_dhcp_release=True
9 libvirt_use_virtio_for_bridges=True
10 connection_type=libvirt
11 root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf
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
19 vif_plugging_is_fatal: false
20 vif_plugging_timeout: 0
22 auth_strategy = keystone
25 rabbit_host = {{ rabbit_host }}
26 rabbit_userid = {{ RABBIT_USER }}
27 rabbit_password = {{ RABBIT_PASS }}
29 my_ip = {{ internal_ip }}
31 vncserver_listen = {{ internal_ip }}
32 vncserver_proxyclient_address = {{ internal_ip }}
33 novncproxy_base_url = http://{{ HA_VIP }}:6080/vnc_auto.html
35 novncproxy_host = {{ internal_ip }}
36 novncproxy_port = 6080
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
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
50 # The SQLAlchemy connection string used to connect to the database
51 connection = mysql://nova:{{ NOVA_DBPASS }}@{{ db_host }}/nova
54 manager = nova.conductor.manager.ConductorManager
58 auth_uri = http://{{ HA_VIP }}:5000/2.0
59 identity_uri = http://{{ HA_VIP }}:35357
60 admin_tenant_name = service
62 admin_password = {{ NOVA_PASS }}
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