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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116 | # liberty
###############################################################################
# [ WARNING ]
# Configuration file maintained by Juju. Local changes may be overwritten.
###############################################################################
[DEFAULT]
verbose=False
debug=False
dhcpbridge_flagfile=/etc/nova/nova.conf
dhcpbridge=/usr/bin/nova-dhcpbridge
logdir=/var/log/nova
state_path=/var/lib/nova
force_dhcp_release=True
iscsi_helper=tgtadm
libvirt_use_virtio_for_bridges=True
connection_type=libvirt
root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf
ec2_private_dns_show_ip=True
api_paste_config=/etc/nova/api-paste.ini
volumes_path=/var/lib/nova/volumes
enabled_apis=ec2,osapi_compute,metadata
auth_strategy=keystone
compute_driver=libvirt.LibvirtDriver
use_ipv6 = False
osapi_compute_listen = 0.0.0.0
metadata_host = 0.0.0.0
s3_listen = 0.0.0.0
ec2_listen = 0.0.0.0
osapi_compute_workers = 96
ec2_workers = 96
scheduler_default_filters = RetryFilter,AvailabilityZoneFilter,CoreFilter,RamFilter,ComputeFilter,ComputeCapabilitiesFilter,ImagePropertiesFilter,ServerGroupAntiAffinityFilter,ServerGroupAffinityFilter
cpu_allocation_ratio = 4
ram_allocation_ratio = 0.9
use_syslog=False
my_ip = x.y.z.12
memcached_servers = x.y.z.227:11211,x.y.z.240:11211,x.y.z.238:11211
keystone_ec2_url = http://x.y.z.10:5000/v2.0/ec2tokens
libvirt_vif_driver = nova.virt.libvirt.vif.LibvirtGenericVIFDriver
libvirt_user_virtio_for_bridges = True
security_group_api = neutron
nova_firewall_driver = nova.virt.firewall.NoopFirewallDriver
default_floating_pool = ext_net
network_api_class = nova.network.neutronv2.api.API
volume_api_class=nova.volume.cinder.API
disk_allocation_ratio = 1.0
s3_listen_port = 3323
osapi_compute_listen_port = 8764
ec2_listen_port = 8763
[database]
connection = mysql://nova:password@x.y.z.18/nova
max_pool_size = 96
[api_database]
connection = mysql://nova:password@x.y.z.18/nova_api
max_pool_size = 96
[glance]
api_servers = http://x.y.z.15:9292
[neutron]
url = http://x.y.z.17:9696
auth_strategy = keystone
auth_section = keystone_authtoken
auth_plugin = password
[keystone_authtoken]
auth_uri = http://x.y.z.10:5000
auth_url = http://x.y.z.10:35357
auth_plugin = password
project_domain_id = default
user_domain_id = default
project_name = services
username = nova
password = password1
signing_dir = /var/cache/nova
[cinder]
os_region_name = openstack-region-name
[osapi_v3]
enabled=True
[conductor]
workers = 96
[oslo_messaging_rabbit]
rabbit_userid = nova
rabbit_virtual_host = openstack
rabbit_password = password2
rabbit_hosts = x.y.z.225,x.y.z.246,x.y.z.252
[oslo_concurrency]
lock_path=/var/lock/nova
[spice]
|