Skip to content
Snippets Groups Projects
Commit 7da0b2a8 authored by Sam Yaple's avatar Sam Yaple
Browse files

Ansible Nova w/ libvirt support

Initial support for Nova in Ansible

Partially-Implements: blueprint ansible-service

Change-Id: I4b0a74bd3e5daa5664f5e1e622bfb40c3285949e
parent 05a6640a
No related branches found
No related tags found
No related merge requests found
......@@ -18,3 +18,17 @@ node_templates_directory: "/usr/share/kolla/templates"
# The directory to store the config files on the destination node
node_config_directory: "/opt/kolla/config"
# All services have ports that need to be referenced on a global scale between
# the different services. This prevents setting the ports in the defaults for
# each role.
keystone_public_port: "5000"
keystone_admin_port: "35357"
glance_api_port: "9292"
glance_registry_port: "9191"
nova_api_port: "8774"
neutron_server_port: "9696"
......@@ -69,8 +69,6 @@ openstack_logging_verbose: "True"
openstack_logging_debug: "False"
openstack_region_name: "RegionOne"
keystone_public_port: "5000"
keystone_admin_port: "35357"
openstack_auth:
auth_url: "http://{{ kolla_internal_address }}:{{ keystone_admin_port }}"
......
......@@ -25,6 +25,13 @@ keystone_database_password: "password"
glance_database_password: "password"
glance_keystone_password: "password"
nova_database_password: "password"
nova_keystone_password: "password"
neutron_database_password: "password"
neutron_keystone_password: "password"
metadata_secret: "password"
####################
# RabbitMQ options
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment