summaryrefslogtreecommitdiff
path: root/roles/devcloud/templates/nova.conf
blob: 580fc9407d2f1baa159ad0a17553683f16912c4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# MANAGED BY ANSIBLE - DO NOT HAND EDIT!
[DEFAULT]
state_path=/var/lib/nova
lock_path=/var/lock/nova
rootwrap_config=/etc/nova/rootwrap.conf
vnc_enabled=false
rpc_backend = rabbit
auth_strategy = keystone
my_ip = {{ansible_default_ipv4.address}}
network_api_class = nova.network.neutronv2.api.API
security_group_api = neutron
linuxnet_interface_driver = nova.network.linux_net.NeutronLinuxBridgeInterfaceDriver
firewall_driver = nova.virt.firewall.NoopFirewallDriver

[glance]
host = controller

[keystone_authtoken]
auth_uri = http://controller:5000
auth_url = http://controller:35357
auth_plugin = password
project_domain_id = default
user_domain_id = default
project_name = service
username = {{nova_user}}
password = {{nova_pass}}

[oslo_messaging_rabbit]
rabbit_host = controller
rabbit_userid = {{rabbit_user}}
rabbit_password = {{rabbit_pass}}

[neutron]
url = http://controller:9696
auth_url = http://controller:35357
auth_plugin = password
project_domain_id = default
user_domain_id = default
region_name = RegionOne
project_name = service
username = {{neutron_user}}
password = {{neutron_pass}}