7a9257b482
In https://review.openstack.org/#/c/286876 the use_forwarded_for option was removed from the Manila configuration. Manila does support that option so it should be kept for logs to include the appropriate clien IP address. TrivialFix Change-Id: I0279ad24a2331ce7e6e292549013b9553fe1a6f3 Related-Bug: #1548935
102 lines
3.9 KiB
Django/Jinja
102 lines
3.9 KiB
Django/Jinja
[DEFAULT]
|
||
debug = {{ manila_logging_debug }}
|
||
|
||
log_dir = /var/log/kolla/manila
|
||
use_forwarded_for = true
|
||
|
||
my_ip = {{ hostvars[inventory_hostname]['ansible_' + api_interface]['ipv4']['address'] }}
|
||
|
||
# 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
|
||
|
||
rootwrap_config = /etc/manila/rootwrap.conf
|
||
api_paste_config = /etc/manila/api-paste.ini
|
||
|
||
rpc_backend = rabbit
|
||
|
||
auth_strategy = keystone
|
||
|
||
os_region_name = {{ openstack_region_name }}
|
||
|
||
neutron_url = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ neutron_server_port }}
|
||
neutron_admin_auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}/v2.0
|
||
neutron_admin_project_name = service
|
||
neutron_admin_username = {{ neutron_keystone_user }}
|
||
neutron_admin_password = {{ neutron_keystone_password }}
|
||
|
||
cinder_admin_auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}/v2.0
|
||
cinder_admin_tenant_name = service
|
||
cinder_admin_username = cinder
|
||
cinder_admin_password = {{ cinder_keystone_password }}
|
||
|
||
nova_admin_auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}/v2.0
|
||
nova_admin_tenant_name = service
|
||
nova_admin_username = {{ nova_keystone_user }}
|
||
nova_admin_password = {{ nova_keystone_password }}
|
||
|
||
[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.
|
||
{% if manila_dhss == "True" %}
|
||
driver_handles_share_servers = True
|
||
{% elif manila_dhss == "False" %}
|
||
driver_handles_share_servers = False
|
||
{% endif %}
|
||
|
||
# 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://github.com/openstack/manila/blob/6785cad9/devstack/plugin.sh#L86
|
||
service_instance_password = {{ service_instance_password }}
|
||
service_instance_user = {{ service_instance_user }}
|
||
service_image_name = manila-service-image
|
||
|
||
# These will be used for keypair creation and inserted into service VMs.
|
||
path_to_private_key = /home/stack/.ssh/id_rsa
|
||
path_to_public_key = /home/stack/.ssh/id_rsa.pub
|
||
|
||
# Custom name for share backend.
|
||
share_backend_name = GENERIC
|
||
|
||
[oslo_messaging_rabbit]
|
||
rabbit_userid = {{ rabbitmq_user }}
|
||
rabbit_password = {{ rabbitmq_password }}
|
||
rabbit_hosts = {% for host in groups['rabbitmq'] %}{{ hostvars[host]['ansible_' + hostvars[host]['api_interface']]['ipv4']['address'] }}:{{ rabbitmq_port }}{% if not loop.last %},{% endif %}{% endfor %}
|
||
|
||
[oslo_concurrency]
|
||
lock_path = /var/lib/manila/tmp
|
||
|
||
[database]
|
||
connection = mysql+pymysql://{{ manila_database_user }}:{{ manila_database_password }}@{{ manila_database_address }}/{{ manila_database_name }}
|
||
|
||
[keystone_authtoken]
|
||
signing_dir = /var/cache/manila
|
||
auth_uri = {{ internal_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_public_port }}
|
||
auth_url = {{ admin_protocol }}://{{ kolla_internal_fqdn }}:{{ keystone_admin_port }}
|
||
auth_plugin = password
|
||
project_domain_id = default
|
||
user_domain_id = default
|
||
project_name = service
|
||
username = {{ manila_keystone_user }}
|
||
password = {{ manila_keystone_password }}
|