6d9d70f3ee
As discussed in the Liberty Design Summit "Moving apps to Python 3" cross-project workshop, the way forward in the near future is to switch to the pure-python PyMySQL library as a default. https://etherpad.openstack.org/p/liberty-cross-project-python3 This change handles only common files and Config Reference. Change-Id: I8d60ec2ca85c3099fc39c293ada0a78fffb28599
75 lines
1.8 KiB
Plaintext
75 lines
1.8 KiB
Plaintext
[DEFAULT]
|
|
|
|
# LOGS/STATE
|
|
verbose=True
|
|
logdir=/var/log/nova
|
|
state_path=/var/lib/nova
|
|
lock_path=/var/lock/nova
|
|
rootwrap_config=/etc/nova/rootwrap.conf
|
|
|
|
# SCHEDULER
|
|
compute_scheduler_driver=nova.scheduler.filter_scheduler.FilterScheduler
|
|
|
|
# VOLUMES
|
|
# configured in cinder.conf
|
|
|
|
# COMPUTE
|
|
compute_driver=libvirt.LibvirtDriver
|
|
instance_name_template=instance-%08x
|
|
api_paste_config=/etc/nova/api-paste.ini
|
|
|
|
# COMPUTE/APIS: if you have separate configs for separate services
|
|
# this flag is required for both nova-api and nova-compute
|
|
allow_resize_to_same_host=True
|
|
|
|
# APIS
|
|
osapi_compute_extension=nova.api.openstack.compute.contrib.standard_extensions
|
|
ec2_dmz_host=192.168.206.130
|
|
s3_host=192.168.206.130
|
|
|
|
# RABBITMQ
|
|
rabbit_host=192.168.206.130
|
|
|
|
# GLANCE
|
|
image_service=nova.image.glance.GlanceImageService
|
|
|
|
# NETWORK
|
|
network_manager=nova.network.manager.FlatDHCPManager
|
|
force_dhcp_release=True
|
|
dhcpbridge_flagfile=/etc/nova/nova.conf
|
|
firewall_driver=nova.virt.libvirt.firewall.IptablesFirewallDriver
|
|
# Change my_ip to match each host
|
|
my_ip=192.168.206.130
|
|
public_interface=eth0
|
|
vlan_interface=eth0
|
|
flat_network_bridge=br100
|
|
flat_interface=eth0
|
|
|
|
# NOVNC CONSOLE
|
|
novncproxy_base_url=http://192.168.206.130:6080/vnc_auto.html
|
|
# Change vncserver_proxyclient_address and vncserver_listen to match each compute host
|
|
vncserver_proxyclient_address=192.168.206.130
|
|
vncserver_listen=192.168.206.130
|
|
|
|
# AUTHENTICATION
|
|
auth_strategy=keystone
|
|
[keystone_authtoken]
|
|
auth_host = 127.0.0.1
|
|
auth_port = 35357
|
|
auth_protocol = http
|
|
admin_tenant_name = service
|
|
admin_user = nova
|
|
admin_password = nova
|
|
signing_dirname = /tmp/keystone-signing-nova
|
|
|
|
# GLANCE
|
|
[glance]
|
|
api_servers=192.168.206.130:9292
|
|
|
|
# DATABASE
|
|
[database]
|
|
connection=mysql+pymysql://nova:yourpassword@192.168.206.130/nova
|
|
|
|
# LIBVIRT
|
|
[libvirt]
|
|
virt_type=qemu |