fb60b14159
Scrubber is a utility, that cleans up artifacts that have been marked as deleted, when delayed_delete mechanism is activated. Enabling delayed_delete option means that after delete API call, the artifact will change its status to deleted, but it's data will not be deleted immediately. Afterwards (according scrubber settings), scrubber will detect the artifacts with 'deleted' statuses and delete them completely. The scrubber can be run as a background periodically task or once as a standalone tool. Implements-blueprint: scrubber Change-Id: Icada538521be927bf8e42512fa2d0be9c97c73ff
70 lines
1.7 KiB
INI
70 lines
1.7 KiB
INI
[metadata]
|
|
name = glare
|
|
summary = OpenStack Artifact Service
|
|
description-file = README.rst
|
|
author = OpenStack
|
|
author-email = openstack-dev@lists.openstack.org
|
|
home-page = http://docs.openstack.org/developer/glare/
|
|
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
|
|
Programming Language :: Python :: 3
|
|
Programming Language :: Python :: 3.5
|
|
|
|
[files]
|
|
packages =
|
|
glare
|
|
glare_tempest_plugin
|
|
|
|
data_files =
|
|
etc/glare =
|
|
etc/glare-paste.ini
|
|
etc/glare-swift.conf.sample
|
|
|
|
[entry_points]
|
|
console_scripts =
|
|
glare-api = glare.cmd.api:main
|
|
glare-db-manage = glare.cmd.db_manage:main
|
|
glare-scrubber = glare.cmd.scrubber:main
|
|
oslo.config.opts =
|
|
glare = glare.opts:list_artifacts_opts
|
|
oslo.policy.enforcer =
|
|
glare = glare.common.policy:_get_enforcer
|
|
oslo.policy.policies =
|
|
glare = glare.common.policy:list_rules
|
|
tempest.test_plugins =
|
|
glare_tempest_tests = glare_tempest_plugin.plugin:GlareTempestPlugin
|
|
|
|
[build_sphinx]
|
|
all_files = 1
|
|
build-dir = doc/build
|
|
source-dir = doc/source
|
|
|
|
[egg_info]
|
|
tag_build =
|
|
tag_date = 0
|
|
tag_svn_revision = 0
|
|
|
|
[compile_catalog]
|
|
directory = glare/locale
|
|
domain = glare
|
|
|
|
[update_catalog]
|
|
domain = glare
|
|
output_dir = glare/locale
|
|
input_file = glare/locale/glare.pot
|
|
|
|
[extract_messages]
|
|
keywords = _ gettext ngettext l_ lazy_gettext
|
|
mapping_file = babel.cfg
|
|
output_file = glare/locale/glare.pot
|
|
|
|
[pbr]
|
|
autodoc_tree_index_modules = True
|