Project

Profile

Help

Story #3182

closed

As a plugin writer, I have an interface which gives me a persistant area of the filesystem just for my plugin's use

Added by bmbouter over 6 years ago. Updated over 4 years ago.

Status:
CLOSED - CURRENTRELEASE
Priority:
Normal
Category:
-
Sprint/Milestone:
Start date:
Due date:
% Done:

100%

Estimated time:
Platform Release:
Groomed:
Yes
Sprint Candidate:
Yes
Tags:
Sprint:
Sprint 31
Quarter:

Description

A plugin interface needs to be added to the plugin API that plugin writers can all to get the full path to a persistent, shared storage location.

A new storage.py should be made in the pulp repo at /plugin/pulpcore/plugin/storage.py. It should provide an interface called get_plugin_storage_path() that returns a string like /var/lib/pulp/shared/<the_plugin_name>. So for the ansible Plugin, which is formally called pulp_ansible, that string would be /var/lib/pulp/shared/pulp_ansible/ when called from inside the pulp_ansible code.

We are using an interface so that in the future users could possibly configure this. For now all returned strings will start with /var/lib/pulp/shared/. Also the full path returned must include a trailing slash since it's meant to be appended to.

The motivating use case is that some plugins like pulp_ostree and pulp_ansible need to use other tools, like python-ostree and python-git to sync data from the remotes. Those tools expect to be writing data to a place they manage. We could have them write to the temp dir, but then we have to have them add all of that indexed content to Pulp which removes some of the benefit those tools provide. Having them write to a dedicated area of the filesystem directly instead is the current plan.

Also available in: Atom PDF