/etc/manila/manila.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[DATABASE] | |
connection = mysql://manila:password@10.104.10.22/manila?charset=utf8 | |
[DEFAULT] | |
osapi_share_listen=0.0.0.0 | |
api_paste_config=/etc/manila/api-paste.ini | |
state_path=/var/lib/manila | |
glance_host=10.104.10.22 | |
sql_idle_timeout=3600 | |
storage_availability_zone=nova | |
rootwrap_config=/etc/manila/rootwrap.conf | |
auth_strategy=keystone | |
enabled_share_backends=backend1 | |
nova_catalog_info=compute:nova:publicURL | |
nova_catalog_admin_info=compute:nova:adminURL | |
nova_api_insecure=False | |
nova_admin_username=nova | |
nova_admin_password=password | |
nova_admin_tenant_name=service | |
nova_admin_auth_url=http://10.104.10.22:5000/v2.0 | |
network_api_class=manila.network.neutron.neutron_network_plugin.NeutronNetworkPlugin | |
lock_path=/tmp/manila/manila_locks | |
debug=True | |
verbose=True | |
log_dir=/var/log/manila | |
use_syslog=False | |
rpc_backend=manila.openstack.common.rpc.impl_kombu | |
control_exchange=openstack | |
amqp_durable_queues=False | |
cinder_catalog_info=volume:cinder:publicURL | |
neutron_api_insecure=False | |
cinder_admin_username=cinder | |
neutron_auth_strategy=keystone | |
cinder_admin_password=password | |
notification_driver=messaging | |
neutron_admin_tenant_name=service | |
cinder_cross_az_attach=True | |
neutron_url=http://10.104.10.22:9696 | |
cinder_api_insecure=False | |
cinder_admin_auth_url=http://10.104.10.22:5000/v2.0 | |
cinder_http_retries=3 | |
cinder_admin_tenant_name=service | |
neutron_admin_password=password | |
neutron_admin_username=neutron | |
neutron_admin_auth_url=http://10.104.10.22:5000/v2.0 | |
neutron_url_timeout=30 | |
default_share_type = default_share_type | |
[backend1] | |
path_to_private_key=~/.ssh/id_rsa | |
service_network_division_mask=28 | |
volume_name_template=manila-share-%s | |
service_instance_network_helper_type=neutron | |
max_time_to_build_instance=300 | |
share_mount_path=/shares | |
service_instance_password=manila | |
manila_service_keypair_name=manila-service | |
max_time_to_create_volume=180 | |
service_network_name=manila_service_network | |
interface_driver=manila.network.linux.interface.OVSInterfaceDriver | |
service_network_cidr=10.254.0.0/16 | |
service_instance_flavor_id=2 | |
path_to_public_key=~/.ssh/id_rsa.pub | |
service_instance_smb_config_path=$share_mount_path/smb.conf | |
volume_snapshot_name_template=manila-snapshot-%s | |
share_backend_name=backend1 | |
smb_template_config_path=$state_path/smb.conf | |
service_image_name=manila-service-image-new | |
driver_handles_share_servers=True | |
service_instance_name_template=manila_service_instance_%s | |
share_driver=manila.share.drivers.generic.GenericShareDriver | |
service_instance_user=manila | |
max_time_to_attach=120 | |
share_helpers=CIFS=manila.share.drivers.generic.CIFSHelper,NFS=manila.share.drivers.generic.NFSHelper | |
share_volume_fstype=ext4 | |
service_instance_security_group=manila-service | |
connect_share_server_to_tenant_network=False | |
[oslo_messaging_rabbit] | |
rabbit_ha_queues=False | |
rabbit_userid=openstack | |
rabbit_password=password | |
rabbit_port=5672 | |
rabbit_use_ssl=False | |
rabbit_virtual_host=/ | |
rabbit_host=10.104.10.22 | |
rabbit_hosts=10.104.10.22:5672 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment