1025890e99
Make nova-libvirt and nova-compute use a data container called nova_data. This data container contains /var/lib/nova/instances data so upgrades to nova-compute work properly. Change-Id: I89362eb0857f7b07503c35178475bc91d0d19ca8 Closes-Bug: #1486333
61 lines
3.0 KiB
YAML
61 lines
3.0 KiB
YAML
---
|
|
project_name: "nova"
|
|
|
|
####################
|
|
# Database
|
|
####################
|
|
nova_database_name: "nova"
|
|
nova_database_user: "nova"
|
|
nova_database_address: "{{ kolla_internal_address }}"
|
|
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
nova_libvirt_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-nova-libvirt"
|
|
nova_libvirt_tag: "{{ openstack_release }}"
|
|
nova_libvirt_image_full: "{{ nova_libvirt_image }}:{{ nova_libvirt_tag }}"
|
|
|
|
nova_conductor_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-nova-conductor"
|
|
nova_conductor_tag: "{{ openstack_release }}"
|
|
nova_conductor_image_full: "{{ nova_conductor_image }}:{{ nova_conductor_tag }}"
|
|
|
|
nova_consoleauth_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-nova-consoleauth"
|
|
nova_consoleauth_tag: "{{ openstack_release }}"
|
|
nova_consoleauth_image_full: "{{ nova_consoleauth_image }}:{{ nova_consoleauth_tag }}"
|
|
|
|
nova_novncproxy_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-nova-novncproxy"
|
|
nova_novncproxy_tag: "{{ openstack_release }}"
|
|
nova_novncproxy_image_full: "{{ nova_novncproxy_image }}:{{ nova_novncproxy_tag }}"
|
|
|
|
nova_scheduler_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-nova-scheduler"
|
|
nova_scheduler_tag: "{{ openstack_release }}"
|
|
nova_scheduler_image_full: "{{ nova_scheduler_image }}:{{ nova_scheduler_tag }}"
|
|
|
|
nova_compute_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-nova-compute"
|
|
nova_compute_tag: "{{ openstack_release }}"
|
|
nova_compute_image_full: "{{ nova_compute_image }}:{{ nova_compute_tag }}"
|
|
|
|
nova_api_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-nova-api"
|
|
nova_api_tag: "{{ openstack_release }}"
|
|
nova_api_image_full: "{{ nova_api_image }}:{{ nova_api_tag }}"
|
|
|
|
nova_data_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-data"
|
|
nova_data_tag: "{{ openstack_release }}"
|
|
nova_data_image_full: "{{ nova_data_image }}:{{ nova_data_tag }}"
|
|
|
|
|
|
####################
|
|
# Openstack
|
|
####################
|
|
nova_public_address: "{{ kolla_external_address }}"
|
|
nova_admin_address: "{{ kolla_internal_address }}"
|
|
nova_internal_address: "{{ kolla_internal_address }}"
|
|
|
|
nova_logging_verbose: "{{ openstack_logging_verbose }}"
|
|
nova_logging_debug: "{{ openstack_logging_debug }}"
|
|
|
|
nova_keystone_user: "nova"
|
|
|
|
openstack_nova_auth: "{'auth_url':'{{ openstack_auth_v2.auth_url }}','username':'{{ openstack_auth_v2.username }}','password':'{{ openstack_auth_v2.password }}','project_name':'{{ openstack_auth_v2.project_name }}'}"
|