aboutsummaryrefslogtreecommitdiff
path: root/configs/nova.conf
diff options
context:
space:
mode:
Diffstat (limited to 'configs/nova.conf')
-rw-r--r--configs/nova.conf71
1 files changed, 71 insertions, 0 deletions
diff --git a/configs/nova.conf b/configs/nova.conf
new file mode 100644
index 0000000..4f898e8
--- /dev/null
+++ b/configs/nova.conf
@@ -0,0 +1,71 @@
+[DEFAULT]
+state_path=/var/lib/nova
+instances_path=/var/lib/nova/instances
+enabled_apis = osapi_compute,metadata
+rootwrap_config = /etc/nova/rootwrap.conf
+
+use_neutron = True
+vif_plugging_is_fatal = True
+vif_plugging_timeout = 300
+
+transport_url = rabbit://openstack:RABBIT_PASS@REPLACE_WITH_HOST
+
+my_ip = REPLACE_WITH_OPENSTACK_HOST_IP
+
+[api_database]
+connection = mysql+pymysql://nova:nova@REPLACE_WITH_HOST/nova_api
+
+[database]
+connection = mysql+pymysql://nova:nova@REPLACE_WITH_HOST/nova
+
+[api]
+auth_strategy = keystone
+
+[keystone_authtoken]
+www_authenticate_uri = http://REPLACE_WITH_HOST:5000
+auth_url = http://REPLACE_WITH_HOST:5000
+memcached_servers = REPLACE_WITH_HOST:11211
+auth_type = password
+project_domain_name = default
+user_domain_name = default
+project_name = service
+username = nova
+password = nova
+
+[vnc]
+enabled = true
+server_listen = $my_ip
+server_proxyclient_address = $my_ip
+novncproxy_base_url = http://REPLACE_WITH_HOST:6080/vnc_auto.html
+
+[glance]
+api_servers = http://REPLACE_WITH_HOST:9292
+
+[oslo_concurrency]
+lock_path = /var/lib/nova/tmp
+
+[placement]
+region_name = RegionOne
+project_domain_name = default
+project_name = service
+auth_type = password
+user_domain_name = default
+auth_url = http://REPLACE_WITH_HOST:5000
+username = placement
+password = placement
+
+[wsgi]
+api_paste_config = /etc/nova/api-paste.ini
+
+# uncomment after installing and configure neutron
+#[neutron]
+#auth_url = http://REPLACE_WITH_HOST:5000
+#auth_type = password
+#project_domain_name = default
+#user_domain_name = default
+#region_name = RegionOne
+#project_name = service
+#username = neutron
+#password = neutron
+#service_metadata_proxy = true
+#metadata_proxy_shared_secret = METADATA_SECRET