b1a91dc161
Remove unused variable
a97983dd0e/manila/share/drivers/service_instance.py (L60-L64)
TrivialFix
Change-Id: I8f1ec970dfbbea27da566ad0f92fe087ac0aa582
77 lines
3.5 KiB
Django/Jinja
77 lines
3.5 KiB
Django/Jinja
[DEFAULT]
|
|
# Following opt is used for definition of share backends that should be enabled.
|
|
# Values are conf groupnames that contain per manila-share service opts.
|
|
enabled_share_backends = generic
|
|
|
|
# Manila requires 'share-type' for share creation.
|
|
# So, set here name of some share-type that will be used by default.
|
|
default_share_type = default_share_type
|
|
|
|
[cinder]
|
|
auth_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}
|
|
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
|
auth_type = password
|
|
project_domain_id = default
|
|
user_domain_id = default
|
|
region_name = {{ openstack_region_name }}
|
|
project_name = service
|
|
username = cinder
|
|
password = {{ cinder_keystone_password }}
|
|
memcached_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
|
|
|
[nova]
|
|
auth_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}
|
|
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
|
auth_type = password
|
|
project_domain_id = default
|
|
user_domain_id = default
|
|
region_name = {{ openstack_region_name }}
|
|
project_name = service
|
|
username = {{ nova_keystone_user }}
|
|
password = {{ nova_keystone_password }}
|
|
memcached_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
|
|
|
[neutron]
|
|
url = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ neutron_server_port }}
|
|
uth_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}
|
|
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
|
auth_type = password
|
|
project_domain_id = default
|
|
user_domain_id = default
|
|
region_name = {{ openstack_region_name }}
|
|
project_name = service
|
|
username = {{ neutron_keystone_user }}
|
|
password = {{ neutron_keystone_password }}
|
|
memcached_servers = {% for host in groups['memcached'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ memcached_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
|
|
|
[generic]
|
|
# This is custom opt group that is used for storing opts of share-service.
|
|
# This one is used only when enabled using opt `enabled_share_backends`
|
|
# from DEFAULT group.
|
|
|
|
# Set usage of Generic driver which uses Cinder as backend.
|
|
share_driver = manila.share.drivers.generic.GenericShareDriver
|
|
|
|
# Vif driver. Used only with Neutron. (string value)
|
|
{% if neutron_plugin_agent == "openvswitch" %}
|
|
interface_driver = manila.network.linux.interface.OVSInterfaceDriver
|
|
{% elif neutron_plugin_agent == "linuxbridge" %}
|
|
interface_driver = manila.network.linux.interface.BridgeInterfaceDriver
|
|
{% endif %}
|
|
|
|
# Generic driver supports both driver modes - with and without handling
|
|
# of share servers. So, we need to define explicitly which one we are
|
|
# enabling using this driver.
|
|
driver_handles_share_servers = {{ driver_handles_share_servers }}
|
|
|
|
# Generic driver is the only driver that uses image from Glance for building
|
|
# service VMs in Nova. And following are data for some specific image.
|
|
# We used one defined in [1]
|
|
# [1] https://git.openstack.org/cgit/openstack/manila/tree/devstack/plugin.sh?id=6785cad9#n86
|
|
service_instance_password = {{ manila_service_instance_password }}
|
|
service_instance_user = {{ manila_service_instance_user }}
|
|
service_image_name = manila-service-image
|
|
|
|
# Custom name for share backend.
|
|
share_backend_name = GENERIC
|