2013-08-08 10:34:06 -04:00
|
|
|
[metadata]
|
2013-09-02 09:59:07 +03:00
|
|
|
name = manila
|
2013-10-15 19:45:32 -03:00
|
|
|
summary = Shared Storage for OpenStack
|
2013-08-08 10:34:06 -04:00
|
|
|
description-file =
|
|
|
|
README.rst
|
|
|
|
author = OpenStack
|
2018-12-03 21:23:25 -05:00
|
|
|
author-email = openstack-discuss@lists.openstack.org
|
2017-07-14 16:37:16 +07:00
|
|
|
home-page = https://docs.openstack.org/manila/latest/
|
2013-08-08 10:34:06 -04:00
|
|
|
classifier =
|
|
|
|
Environment :: OpenStack
|
|
|
|
Intended Audience :: Information Technology
|
|
|
|
Intended Audience :: System Administrators
|
|
|
|
License :: OSI Approved :: Apache Software License
|
|
|
|
Operating System :: POSIX :: Linux
|
|
|
|
Programming Language :: Python
|
|
|
|
Programming Language :: Python :: 2
|
|
|
|
Programming Language :: Python :: 2.7
|
2017-03-07 14:47:51 +05:30
|
|
|
Programming Language :: Python :: 3
|
|
|
|
Programming Language :: Python :: 3.5
|
2013-08-08 10:34:06 -04:00
|
|
|
[global]
|
|
|
|
setup-hooks =
|
|
|
|
pbr.hooks.setup_hook
|
|
|
|
|
|
|
|
[files]
|
2017-09-25 09:35:32 +08:00
|
|
|
data_files =
|
|
|
|
etc/manila =
|
|
|
|
etc/manila/api-paste.ini
|
|
|
|
etc/manila/rootwrap.conf
|
|
|
|
etc/manila/rootwrap.d = etc/manila/rootwrap.d/*
|
2013-08-08 10:34:06 -04:00
|
|
|
packages =
|
2013-09-02 09:59:07 +03:00
|
|
|
manila
|
2017-09-25 09:35:32 +08:00
|
|
|
|
2013-08-08 10:34:06 -04:00
|
|
|
[entry_points]
|
2014-07-23 12:14:08 +03:00
|
|
|
console_scripts =
|
2015-04-06 15:23:26 +03:00
|
|
|
manila-all = manila.cmd.all:main
|
|
|
|
manila-api = manila.cmd.api:main
|
2016-01-28 16:51:28 -02:00
|
|
|
manila-data = manila.cmd.data:main
|
2015-04-06 15:23:26 +03:00
|
|
|
manila-manage = manila.cmd.manage:main
|
2015-06-10 09:58:00 +03:00
|
|
|
manila-rootwrap = oslo_rootwrap.cmd:main
|
2015-04-06 15:23:26 +03:00
|
|
|
manila-scheduler = manila.cmd.scheduler:main
|
|
|
|
manila-share = manila.cmd.share:main
|
2018-10-18 21:11:29 +05:30
|
|
|
manila-status = manila.cmd.status:main
|
2017-03-21 17:25:26 +03:00
|
|
|
wsgi_scripts =
|
|
|
|
manila-wsgi = manila.wsgi.wsgi:initialize_application
|
2013-09-02 09:59:07 +03:00
|
|
|
manila.scheduler.filters =
|
2015-11-25 13:59:42 -08:00
|
|
|
AvailabilityZoneFilter = manila.scheduler.filters.availability_zone:AvailabilityZoneFilter
|
|
|
|
CapabilitiesFilter = manila.scheduler.filters.capabilities:CapabilitiesFilter
|
|
|
|
CapacityFilter = manila.scheduler.filters.capacity:CapacityFilter
|
2016-06-30 14:46:50 -03:00
|
|
|
DriverFilter = manila.scheduler.filters.driver:DriverFilter
|
2015-11-25 13:59:42 -08:00
|
|
|
IgnoreAttemptedHostsFilter = manila.scheduler.filters.ignore_attempted_hosts:IgnoreAttemptedHostsFilter
|
|
|
|
JsonFilter = manila.scheduler.filters.json:JsonFilter
|
|
|
|
RetryFilter = manila.scheduler.filters.retry:RetryFilter
|
2015-12-05 01:05:06 +05:30
|
|
|
ShareReplicationFilter = manila.scheduler.filters.share_replication:ShareReplicationFilter
|
2017-03-15 19:06:23 +03:00
|
|
|
# Share Group filters
|
|
|
|
ConsistentSnapshotFilter = manila.scheduler.filters.share_group_filters.consistent_snapshot:ConsistentSnapshotFilter
|
|
|
|
|
2015-11-25 13:59:42 -08:00
|
|
|
manila.scheduler.weighers =
|
|
|
|
CapacityWeigher = manila.scheduler.weighers.capacity:CapacityWeigher
|
2016-06-30 14:46:50 -03:00
|
|
|
GoodnessWeigher = manila.scheduler.weighers.goodness:GoodnessWeigher
|
2015-11-25 13:59:42 -08:00
|
|
|
PoolWeigher = manila.scheduler.weighers.pool:PoolWeigher
|
2017-03-15 19:06:23 +03:00
|
|
|
|
Migrate to oslo.messaging instead of commom/rpc
Manila uses oslo-incubator/rpc as an RPC library.
During Havana, oslo/rpc was cleaned up and moved into
oslo.messaging with a more stable and well-defined API.
oslo-incubator/rpc considered as deprecated and should be
replaced with oslo.messaging in Manila.
Sum changes:
* New dependency oslo.messaging>=1.3.0 is required
* The new rpc module has init() and cleanup() methods which manage the
global oslo.messaging transport state. The TRANSPORT and NOTIFIER
globals are conceptually similar to the current RPCIMPL global,
except we're free to create and use alternate Transport objects.
* The rpc.get_{client,server,notifier}() methods are just helpers
which wrap the global messaging state, specifiy serializers and
specify the use of the eventlet executor.
* In oslo.messaging, a request context is expected to be a dict, so
RequestContextSerializer was added which can serialize to and from
dicts using RequestContext.{to,from}_dict()
* The allowed_rpc_exception_modules configuration option is replaced
by an allowed_remote_exmods get_transport() parameter. This is not
something that users ever need to configure, but it is something
each project using oslo.messaging needs to be able to customize.
* We maintain a global NOTIFIER object and create specializations of
it with specific publisher IDs in order to avoid notification driver
loading overhead.
* rpc.py contains transport aliases for backwards compatibility
purposes. setup.cfg also contains notification driver aliases for
backwards compat.
* messaging.ConfFixture is used in tests to override oslo.messaging
config options, rather than making assumptions about the options
registered by the library.
Partially-implements bp oslo-messaging
Change-Id: I42cd582f3e1ff96c8f6e8957122b8e9176b1771d
2014-06-20 11:46:44 -04:00
|
|
|
# These are for backwards compat with Havana notification_driver configuration values
|
2015-06-10 09:58:00 +03:00
|
|
|
oslo_messaging.notify.drivers =
|
|
|
|
manila.openstack.common.notifier.log_notifier = oslo_messaging.notify._impl_log:LogDriver
|
|
|
|
manila.openstack.common.notifier.no_op_notifier = oslo_messaging.notify._impl_noop:NoOpDriver
|
2016-02-10 17:48:56 +08:00
|
|
|
manila.openstack.common.notifier.rpc_notifier2 = oslo_messaging.notify.messaging:MessagingV2Driver
|
|
|
|
manila.openstack.common.notifier.rpc_notifier = oslo_messaging.notify.messaging:MessagingDriver
|
2015-06-10 09:58:00 +03:00
|
|
|
manila.openstack.common.notifier.test_notifier = oslo_messaging.notify._impl_test:TestDriver
|
2015-08-17 13:22:40 +02:00
|
|
|
oslo.config.opts =
|
2014-10-16 21:03:03 +02:00
|
|
|
manila = manila.opts:list_opts
|
2016-03-02 21:19:24 -06:00
|
|
|
oslo.config.opts.defaults =
|
2016-03-11 16:06:45 -05:00
|
|
|
manila = manila.common.config:set_middleware_defaults
|
2017-09-25 18:41:24 +08:00
|
|
|
oslo.policy.enforcer =
|
|
|
|
manila = manila.policy:get_enforcer
|
|
|
|
oslo.policy.policies =
|
|
|
|
# The sample policies will be ordered by entry point and then by list
|
|
|
|
# returned from that entry point. If more control is desired split out each
|
|
|
|
# list_rules method into a separate entry point rather than using the
|
|
|
|
# aggregate method.
|
|
|
|
manila = manila.policies:list_rules
|
2016-11-14 09:52:01 -05:00
|
|
|
manila.share.drivers.dell_emc.plugins =
|
|
|
|
vnx = manila.share.drivers.dell_emc.plugins.vnx.connection:VNXStorageConnection
|
|
|
|
unity = manila.share.drivers.dell_emc.plugins.unity.connection:UnityStorageConnection
|
|
|
|
isilon = manila.share.drivers.dell_emc.plugins.isilon.isilon:IsilonStorageConnection
|
2016-11-14 09:52:01 -05:00
|
|
|
vmax = manila.share.drivers.dell_emc.plugins.vmax.connection:VMAXStorageConnection
|
2015-11-25 13:59:42 -08:00
|
|
|
manila.tests.scheduler.fakes =
|
|
|
|
FakeWeigher1 = manila.tests.scheduler.fakes:FakeWeigher1
|
|
|
|
FakeWeigher2 = manila.tests.scheduler.fakes:FakeWeigher2
|
2013-08-08 10:34:06 -04:00
|
|
|
|
|
|
|
[egg_info]
|
2017-10-16 14:32:31 +01:00
|
|
|
tag_build =
|
2013-08-08 10:34:06 -04:00
|
|
|
tag_date = 0
|
|
|
|
tag_svn_revision = 0
|
|
|
|
|
|
|
|
[compile_catalog]
|
2013-09-02 09:59:07 +03:00
|
|
|
directory = manila/locale
|
|
|
|
domain = manila
|
2013-08-08 10:34:06 -04:00
|
|
|
|
|
|
|
[update_catalog]
|
2013-09-02 09:59:07 +03:00
|
|
|
domain = manila
|
|
|
|
output_dir = manila/locale
|
|
|
|
input_file = manila/locale/manila.pot
|
2013-08-08 10:34:06 -04:00
|
|
|
|
|
|
|
[extract_messages]
|
|
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
|
|
mapping_file = babel.cfg
|
2013-09-02 09:59:07 +03:00
|
|
|
output_file = manila/locale/manila.pot
|
2013-08-08 10:34:06 -04:00
|
|
|
|
2013-11-19 11:24:56 +01:00
|
|
|
[wheel]
|
|
|
|
universal = 1
|