8155d74d8d
Co-Authored-By: Mauricio Lima <mauriciolimab@gmail.com> Change-Id: I9a4a6b6523dee4b388513386b7d85d421f2b7b89
61 lines
2.7 KiB
YAML
61 lines
2.7 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 }}"
|
|
|
|
manila_data_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-manila-data"
|
|
manila_data_tag: "{{ openstack_release }}"
|
|
manila_data_image_full: "{{ manila_data_image }}:{{ manila_data_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: "{{ openstack_auth }}"
|
|
|
|
####################
|
|
# Manila
|
|
####################
|
|
manila_backends:
|
|
- name: "generic"
|
|
driver: "generic"
|
|
enabled: "{{ enable_manila_backend_generic | bool }}"
|
|
- name: "hnas1"
|
|
driver: "hnas"
|
|
enabled: "{{ enable_manila_backend_hnas | bool }}"
|
|
|
|
manila_enabled_backends: "{{ manila_backends|selectattr('enabled', 'equalto', true)|list }}"
|