a2c2eba34f
This change makes each step of the kolla deployment aware of the port database was configured to listen on. It defaults mariadb_port to database_port. Change-Id: I8e85d5732015afc0a5481cb33e0b629fdfa84a1b Closes-Bug: #1576151 DocImpact
45 lines
2.2 KiB
YAML
45 lines
2.2 KiB
YAML
---
|
|
project_name: "manila"
|
|
|
|
####################
|
|
## Database
|
|
#####################
|
|
manila_database_name: "manila"
|
|
manila_database_user: "manila"
|
|
manila_database_address: "{{ kolla_internal_fqdn }}:{{ database_port }}"
|
|
|
|
|
|
#####################
|
|
## Docker
|
|
#####################
|
|
manila_share_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-manila-share"
|
|
manila_share_tag: "{{ openstack_release }}"
|
|
manila_share_image_full: "{{ manila_share_image }}:{{ manila_share_tag }}"
|
|
|
|
manila_scheduler_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-manila-scheduler"
|
|
manila_scheduler_tag: "{{ openstack_release }}"
|
|
manila_scheduler_image_full: "{{ manila_scheduler_image }}:{{ manila_scheduler_tag }}"
|
|
|
|
manila_api_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-manila-api"
|
|
manila_api_tag: "{{ openstack_release }}"
|
|
manila_api_image_full: "{{ manila_api_image }}:{{ manila_api_tag }}"
|
|
|
|
|
|
#####################
|
|
## OpenStack
|
|
#####################
|
|
manila_admin_endpoint: "{{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ manila_api_port }}/v1/%(tenant_id)s"
|
|
manila_internal_endpoint: "{{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ manila_api_port }}/v1/%(tenant_id)s"
|
|
manila_public_endpoint: "{{ public_protocol }}://{{ kolla_external_fqdn }}:{{ manila_api_port }}/v1/%(tenant_id)s"
|
|
manila_v2_admin_endpoint: "{{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ manila_api_port }}/v2/%(tenant_id)s"
|
|
manila_v2_internal_endpoint: "{{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ manila_api_port }}/v2/%(tenant_id)s"
|
|
manila_v2_public_endpoint: "{{ public_protocol }}://{{ kolla_external_fqdn }}:{{ manila_api_port }}/v2/%(tenant_id)s"
|
|
|
|
manila_logging_debug: "{{ openstack_logging_debug }}"
|
|
|
|
manila_keystone_user: "manila"
|
|
manila_service_instance_user: "manila"
|
|
manila_service_instance_password: "manila"
|
|
|
|
openstack_manila_auth: "{'auth_url':'{{ openstack_auth.auth_url }}','username':'{{ openstack_auth.username }}','password':'{{ openstack_auth.password }}','project_name':'{{ openstack_auth.project_name }}'}"
|