Project

Profile

Help

31+ Ideas (post MVP) » History » Sprint/Milestone 17

bmbouter, 11/10/2017 11:02 PM
Posting results of the "Live APIs" MVP call

1 12 bmbouter
# Core 3.1+ Ideas (post MVP)
2 1 bmbouter
3 11 bmbouter
## Authentication
4 1 bmbouter
5
  - External
6
  - Expiring passwords
7
  - REMOTE_USER support?
8
9 11 bmbouter
## Authorization
10 1 bmbouter
11
\<put ideas here\>
12
13 11 bmbouter
## Versioned Repository
14 1 bmbouter
15 6 bmbouter
<span style="color:red;">As an authenticated user, I can get a list of a repo's versions.</span>
16
17
<span style="color:red;">As an authenticated user, I can specify how many versions to keep at a time.</span>
18
19 7 bmbouter
<span style="color:red;">As an authenticated user, I can get a reference to a new repo version from any task that adds or removes content.</span>
20 6 bmbouter
21
<span style="color:red;">As an authenticated user, I can publish a repo and have it default to the latest version.</span>
22
23
<span style="color:red;">As an authenticated user, I can run a publisher with a repository version.</span>
24 1 bmbouter
25 11 bmbouter
## Content Manipulation
26 2 bmbouter
27
  - Sync can have "sync" options.
28
  - Sync options are different than "importer" attributes.
29
30 14 bmbouter
As an authenticated user, I can remove one or more units from one or more repositories
31
32
  - filtering support on the unit(s)
33
  - filtering support on the repositories
34
35 16 bmbouter
<span style="color:red;">As an authenticated user I can specify a filter to identify content to be added to a repo</span>
36
37 11 bmbouter
## Upload
38 5 bmbouter
39
  - Allow for a large single file to have its chunks uploaded in parallel.
40
41 11 bmbouter
## Importers
42 1 bmbouter
43
  - Sync from multiple importers
44
  - We need to support multiple importers to properly support distributions and ostree (with distributions).
45
  - add auto-publish feature
46
  - As an authenticated user I have a notes field I can use to store arbitrary \<key, value\> tuples with both key and value being strings.
47 11 bmbouter
  - Add the force-full option.
48 1 bmbouter
49 11 bmbouter
## Publishers
50 2 bmbouter
51 11 bmbouter
  - Add an auto_publish feature. Possibly a field called auto_publish \[default to true\] that indicates that the publisher will publish automatically when the associated repository's content has changed.
52 1 bmbouter
  - Add the force-full option.
53 12 bmbouter
  - Add a no-op publishing feature
54 11 bmbouter
55
## Task Management
56
57 3 bmbouter
Allow filtering of tasks on 'completed' or 'started'. These 'meta' states are not states directly, but they represent a group of states. For instance 'completed' would be represent 'skipped', 'completed', 'failed', and 'canceled'.
58
59
Additional filtering support:
60 1 bmbouter
61 3 bmbouter
  - worker
62
  - started_at, filtered by less than, greater than
63 1 bmbouter
  - finished_at, filtered by less than, greater than
64 3 bmbouter
  - resource field on an associated ReservedResource
65
66
As an authenticated user I can DELETE a task
67
68 11 bmbouter
## Task Scheduling
69 5 bmbouter
70
  - As an authenticated user, I can schedule a task.
71 1 bmbouter
72 11 bmbouter
## Data Exports
73 4 bmbouter
74
As an authenticated user, I can export a group of published repositories to a single media
75
76
As an authenticated user, I can export an incremental publish of a group of repositories to a single media
77
78
For both use cases \^, the layout needs some more discussion.
79
80
  - maybe it is specified by the user?
81 1 bmbouter
  - maybe it is maintains the published filesystem tree structure?
82
83 4 bmbouter
Also there are two main options in this area.
84
85
1\. One is a publish bundler that bundles up all the units published to disk. Then this media (e.g. an iso) is mounted and brought into another Pulp installation using a sync. This will only work for content types that don't require 'live APIs'
86
87
2\. Another option is to export database model data and disk content units from one Pulp to media and then import by directly adding those units to another Pulp. This could be done through the API possibly. This would allow things like Docker to be exported and imported, but it may not work for OSTree??
88
89 1 bmbouter
Also there was discussion about OSTree possibly never supporting and incremental export/import due to how OSTree stores content.
90
91
## Server Plugins (which content types are available and importers and publishers)
92 9 bmbouter
93
## Orphans
94
95 14 bmbouter
As an authenticated user, I can force delete content units even when associated with repositories.  
96
As an authenticated user, I can cleanup orphaned content units for a specific "type" without specifying the units specifically.  
97 15 bmbouter
As an authenticated user, I can filter orphan cleanup to only remove orphaned content units and artifacts created before a specified datetime.  
98
As an authenticated user, I list all orphaned content units and orphaned artifacts that are not in any repositories
99 1 bmbouter
100 12 bmbouter
## Plugin API
101 1 bmbouter
102 12 bmbouter
Incremental publishing support
103 8 dkliban@redhat.com
104 11 bmbouter
## Status API
105 8 dkliban@redhat.com
106
Status API return status of Squid (aka Proxy), web server, streamer
107
108
API to view an overall health attribute that returns a message when something is not operating properly or True.
109
110
I can view information about unapplied migrations
111
112 1 bmbouter
I can view a verbose Status API which returns a Pulp version for each component along with a list of all plugins and their versions.
113
114
## Alternate content source support
115 12 bmbouter
116 17 bmbouter
## Deployment
117
118
<span style="color:red;">As a user, I can deploy the Pulp content serving view without all of Pulp's requirements.</span>
119
120 12 bmbouter
# Plugin Feature Set 3.1+ Ideas (post MVP)
121
122
## Python
123
124
  - Add a mirror sync policy
125 13 mhrivnak
126
## Event Listener Notifier
127
128
I can receive serialized task info via AMQP on each task save
129
130
*Can this be restated in more pedantic terms? Does this mean that an arbitrary host can attach itself to Pulp's AMQP message bus and get updates on the progress of tasks?*