7d33401ee3
This changeset handles the details of applying, removing, listing and retrieving 'modules' from Trove instances. See https://review.openstack.org/#/c/290177 for the corresponding troveclient changes. Scenario tests have been extended to cover the new functionality. These tests can be run by: ./redstack int-tests --group=module A sample module type 'driver' - ping - is included that simply parses the module contents for a message=Text string and returns the 'Text' as the status message. If no 'message=' tag is found, then the driver reports an error message. Due to time constraints, a few unimplemented parts/tests of the blueprint have been triaged as bugs and are scheduled to be fixed before mitaka-rc1. These include: Vertica license module driver: https://bugs.launchpad.net/trove/+bug/1554898 Incomplete module-instances command: https://bugs.launchpad.net/trove/+bug/1554900 Incomplete 'live-update' of modules: https://bugs.launchpad.net/trove/+bug/1554903 Co-Authored-by: Peter Stachowski <peter@tesora.com> Co-Authored-by: Simon Chang <schang@tesora.com> Partially Implements: blueprint module-management Change-Id: Ia8d3ff2f4560a6d997df99d41012ea61fb0096f7 Depends-On: If62f5e51d4628cc6a8b10303d5c3893b3bd5057e
75 lines
2.3 KiB
INI
75 lines
2.3 KiB
INI
[metadata]
|
|
name = trove
|
|
summary = OpenStack DBaaS
|
|
description-file =
|
|
README.rst
|
|
author = OpenStack
|
|
author-email = openstack-dev@lists.openstack.org
|
|
home-page = http://www.openstack.org/
|
|
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
|
|
|
|
[files]
|
|
packages =
|
|
trove
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
trove-api = trove.cmd.api:main
|
|
trove-taskmanager = trove.cmd.taskmanager:main
|
|
trove-mgmt-taskmanager = trove.cmd.taskmanager:mgmt_main
|
|
trove-conductor = trove.cmd.conductor:main
|
|
trove-manage = trove.cmd.manage:main
|
|
trove-guestagent = trove.cmd.guest:main
|
|
trove-fake-mode = trove.cmd.fakemode:main
|
|
|
|
trove.api.extensions =
|
|
account = trove.extensions.routes.account:Account
|
|
mgmt = trove.extensions.routes.mgmt:Mgmt
|
|
mysql = trove.extensions.routes.mysql:Mysql
|
|
security_group = trove.extensions.routes.security_group:Security_group
|
|
|
|
trove.guestagent.module.drivers =
|
|
ping = trove.guestagent.module.drivers.ping_driver:PingDriver
|
|
|
|
# These are for backwards compatibility with Havana notification_driver configuration values
|
|
oslo.messaging.notify.drivers =
|
|
trove.openstack.common.notifier.log_notifier = oslo_messaging.notify._impl_log:LogDriver
|
|
trove.openstack.common.notifier.no_op_notifier = oslo_messaging.notify._impl_noop:NoOpDriver
|
|
trove.openstack.common.notifier.rpc_notifier2 = oslo_messaging.notify.messaging:MessagingV2Driver
|
|
trove.openstack.common.notifier.rpc_notifier = oslo_messaging.notify.messaging:MessagingDriver
|
|
trove.openstack.common.notifier.test_notifier = oslo_messaging.notify._impl_test:TestDriver
|
|
|
|
[global]
|
|
setup-hooks =
|
|
pbr.hooks.setup_hook
|
|
|
|
[build_sphinx]
|
|
all_files = 1
|
|
build-dir = doc/build
|
|
source-dir = doc/source
|
|
|
|
[compile_catalog]
|
|
directory = trove/locale
|
|
domain = trove
|
|
|
|
[update_catalog]
|
|
domain = trove
|
|
output_dir = trove/locale
|
|
input_file = trove/locale/trove.pot
|
|
|
|
[extract_messages]
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
mapping_file = babel.cfg
|
|
output_file = trove/locale/trove.pot
|
|
|
|
[wheel]
|
|
universal = 1
|