Project

Profile

Help

Pulp 3 Minimum Viable Product » History » Sprint/Milestone 56

ttereshc, 07/27/2017 03:25 PM

1 1 bmbouter
# Pulp 3.0.0 Minimum Viable Product (MVP)
2
3 21 bmbouter
<span style="color:red;">Lines highlighted in red need more attention.</span>
4 20 bmbouter
5 37 bmbouter
## Overall Guarantees
6
7 39 jortel@redhat.com
All REST API calls will update the DB using transactions as necessary to ensure data integrity.
8 37 bmbouter
9 1 bmbouter
## Authentication
10
11 17 semyers
As an authenticated user I can manage user(s).
12
13
  - Add a user
14
  - View user(s)
15
  - Update any user detail
16
  - Delete a user
17
18
As an API user, I can have documentation to generate a JSON Web Token (JWT) without the server being online.
19
20 45 bmbouter
<span style="color:red;">As an administrator, I can disable JWT token expiration. This configuration is in the settings file and is system-wide.</span>
21 1 bmbouter
22 45 bmbouter
<span style="color:red;">As an administrator, I can configure the JWT tokens to expire after a configurable amount of time. This configuration is in the settings file and is system-wide.</span>
23 1 bmbouter
24 45 bmbouter
<span style="color:red;">The JWT shall have a username identifier</span>
25 1 bmbouter
26 45 bmbouter
<span style="color:red;">As an API user, I can authenticate any API call (except to request a JWT) with a JWT.</span>
27 17 semyers
28 45 bmbouter
<span style="color:red;">As an API user, I can invalidate all existing JWT tokens for a given user.</span>
29 17 semyers
30 45 bmbouter
<span style="color:red;">As an authenticated user, when deleting a user 'foo', all of user 'foo's existing JWTs are invalidated.</span>
31 17 semyers
32 45 bmbouter
<span style="color:red;">As an autheticated user, I can invalidate a user's JWTs in the same operation as updating the password.</span>
33
34
<span style="color:red;">As an un-authenticated user, I can obtain a JWT token by using a username and password.</span>
35 1 bmbouter
36
## Repositories
37
38 18 dkliban@redhat.com
As an authenticated user, I can list all repos.
39
40
  - All fields are included
41
  - Pagination is supported
42 22 bmbouter
  - <span style="color:red;">Filtering support</span>
43 18 dkliban@redhat.com
44
As an authenticated user, I can CRUD a repository
45
46
  - Create a repo
47
  - Read a repo
48
  - Update all mutable repo fields
49 21 bmbouter
  - Delete a repo (asynchronous)
50 18 dkliban@redhat.com
51
As an authenticated user, I can list a repository's associated importers and publishers
52
53
  - All fields are included
54
  - Pagination is supported
55 22 bmbouter
  - <span style="color:red;">Filtering support</span>
56 18 dkliban@redhat.com
57 20 bmbouter
<span style="color:red;">As an authenticated user, I can summarize content in a repo (including counts)</span>
58 18 dkliban@redhat.com
59 51 bmbouter
## Importers
60
61
note: Importer attributes will commonly be available on importers, but aren't guaranteed to be used by all importers.
62
63 18 dkliban@redhat.com
As an authenticated user, I can CRUD an importer
64
65
  - Create an importer
66
  - Read an importer
67
  - Update all mutable importer fields
68 21 bmbouter
  - Delete an importer (asynchronous)
69 18 dkliban@redhat.com
70 50 bmbouter
As an authenticated user I can configure the following attributes on an Importer:
71 47 bmbouter
72 48 amacdona@redhat.com
  - validate (bool) \[optional: defaults to True\]: If true, the plugin will validate imported content.
73
  - ssl_ca_certificate (str) \[optional\] String containing a PEM encoded CA certificate used to validate the server certificate presented by the external source.
74
  - ssl_client_certificate (str) \[optional\] Contains a PEM encoded client certificate used for authentication.
75
  - ssl_client_key (str) \[optional\] Contains a PEM encoded private key used for authentication.
76
  - ssl_validation (bool) \[optional: defaults to True\]: If true, SSL peer validation must be performed.
77
  - proxy_url (str) \[optional\] Contains the proxy URL. Format: scheme://user:password@host:port.
78
  - username (str) \[optional\] Contains the username to be used for authentication when syncing.
79 1 bmbouter
  - password (str) \[optional\] Contains the password to be used for authentication when syncing.
80 50 bmbouter
  - download_policy (str) \[optional\] Contains the downloading policy name. This is a choice of three options:  
81
    \- immediate (default) - Downloading occurs during sync. The sync task does not complete until downloading is done.  
82
    \- background - Downloading is started by the sync but occurs in the background. The sync task completes before downloading is complete.  
83
    \- on-demand - The sync task records everything that would be downloaded but does not download content. Downloading occurs on demand as driven by client requests for content.
84 1 bmbouter
  - feed_url (str) \[optional\] Contains the URL of an external content source. This is optional.
85 50 bmbouter
  - sync mode: (str) \[optional\]. It has two choices 'additive' and 'mirror':  
86
    \- additive (default) - all remote content is added to the local repository on sync. During sync no content is removed from the local repository.  
87
    \- mirror - the local content will mirror the remote content exactly, removing local content if not also present in the remote content.
88
  - name (str) \[required\] Contains the name.
89
  - last_updated (datetime) \[read-only\] Contains the datetime of the last importer update.
90 55 bmbouter
  - last_synced (datetime) \[read-only\] Contains the datetime of the last importer sync.
91 53 bmbouter
  - <span style="color:red;">max_count (int) - ???</span>
92 51 bmbouter
93 52 bmbouter
## Publishers
94 51 bmbouter
95
note: Publisher attributes will commonly be available on publishers, but aren't guaranteed to be used by all publishers.
96 47 bmbouter
97 18 dkliban@redhat.com
As an authenticated user, I can CRUD a publisher
98
99
  - Create a publisher
100
  - Read a publisher
101 1 bmbouter
  - Update all mutable publisher fields
102
  - Delete a publisher (asynchronous)
103 50 bmbouter
104
As an authenticated user I can configure the following attributes on a Publisher:
105
106
  - relative_path (str) \[optional\] The (relative) path component of the published url.
107
  - name - (str) \[required\] contains the name.
108
  - last_published (datetime) \[read-only\] When the last successful publish occurred.
109
  - last_updated (datetime) \[read-only\] The datetime of the last publisher update.
110 56 ttereshc
  - <span style="color:red;">auto_publish(bool) - ??? consider adding auto-publish feature to MVP</span>
111 1 bmbouter
112
## Content Manipulation
113
114 19 bmbouter
As an authenticated user, I can trigger an importer to sync.
115
116
  - I can follow the progress of all syncs. (Syncs are asynchronous.)
117
  - I cannot pass "sync" options.
118
  - Auto-publish is not included as an importer property.
119
120
As an authenticated user, I can trigger a publisher to publish.
121
122
  - I can follow the progress of all publishes. (Publishes are asynchronous.)
123
  - I cannot pass "publish" options.
124
125 25 bmbouter
## Upload & Copy
126
127 32 bmbouter
#### Getting bits from the client to Pulp
128
129 35 bmbouter
As an authenticated user, I can request a file ID from the server to upload a file with
130 19 bmbouter
131 35 bmbouter
As an authenticated user, I can upload a file with the server provided file ID, an optional chunk size, and an optional offset.
132 19 bmbouter
133 35 bmbouter
As an authenticated user, I can rely on Pulp to auto-delete uploaded files after a configurable time. (Eg: 6 hours).
134 30 bmbouter
135 35 bmbouter
As a user, I can delete an uploaded file by file ID
136 30 bmbouter
137 1 bmbouter
#### Creating Artifacts and Content Units
138 35 bmbouter
139 29 bmbouter
As a user, I can reference a file ID at Artifact creation time.
140 1 bmbouter
141 37 bmbouter
As an authenticated user, I can create a content unit by providing the content type, its Artifacts using file upload IDs for each Artifact, and the metadata supplied in the POST body. This call is atomic, either all Artifacts and the content unit are created in the database and on the filesystem or none are.
142 31 bmbouter
143 1 bmbouter
As an authenticated user, I can reuse a file ID to create multiple Artifacts without uploading the file twice.
144
145 37 bmbouter
#### Unit Management / Copy
146 29 bmbouter
147 41 jortel@redhat.com
As an authenticated user, I can add and remove one or more units to and from a destination repo.
148 1 bmbouter
149
  - <span style="color:red;">Filtering support for specifying the unit(s)</span>
150 41 jortel@redhat.com
  - I can follow the progress. (adding and removing are asynchronous).
151 1 bmbouter
152
## Versioned Repositories
153
154 40 bmbouter
As an authenticated user, I can list the content in a particular repository version
155
156
  - All fields are included
157
  - Pagination is supported
158
  - <span style="color:red;">Filtering support</span>
159
160
As an authenticated user, I can discover a URL to the latest version of a repository  
161
<span class="resource repository the on attributes or endpoint, API dedicated a through \^ Is" style="color:red;"></span>
162
163
As an authenticated user, I can run a publisher without a repository version and have it default to the latest version.
164
165
<span style="color:red;">As an authenticated user, I can delete a repository version by specifying the version</span>
166
167
<span style="color:red;">As an authenticated user, I can upload multiple content(s?) and add create a single new version that adds all of them.</span>
168 1 bmbouter
169 20 bmbouter
## Orphans
170
171 43 bmbouter
<span style="color:red;">As an authenticated user, I can clean up orphaned content units</span>  
172 1 bmbouter
<span style="color:red;">\* I can follow the progress of all cleanups. (Cleanups are asynchronous.)</span>
173 43 bmbouter
174
<span style="color:red;">As an authenticated user, I can delete a specific content unit</span>  
175
<span style="color:red;">\* If the content unit is still in at least one repository the delete fails with a listing of all repositories the unit is part of.</span>  
176
<span style="color:red;">\* Artifacts and associated files from the deleted unit are cleaned up</span>
177
178
<span style="color:red;">As an authenticated user, I can delete multiple content units with filtering</span>  
179
<span style="color:red;">\* If a content unit is still in at least one repository the delete fails with a listing of all repositories the unit is part of.</span>  
180
<span style="color:red;">\* Artifacts and associated files from deleted units are cleaned up</span>
181
182
<span style="color:red;">As an authenticated user, I see all (orphans) units that are not in any repositories</span>
183 1 bmbouter
184
## Filter
185
186 44 bmbouter
<span style="color:red;">I can filter all nouns *(What is the meaning of "filter?" What is a noun?)*</span>
187 1 bmbouter
188 22 bmbouter
## Task Management
189
190
As an authenticated user, I can list all tasks
191
192
  - Filtering support on \['state', 'id', 'group'\]
193
  - This does not include associated progress reports
194
195
As an authenticated user, I can see a detail view for a specific task
196
197
  - all attributes of a task
198
  - all associated progress reports
199
200
As an authenticated user, I can cancel a task
201 1 bmbouter
202
  - don't dare to use the DELETE verb!
203
204
## Task Group
205
206
I can view a summary of the status of all tasks in a group
207
208
## Event Listener Notifier
209
210 12 Ichimonji10
I can receive serialized task info via AMQP on each task save
211
212 1 bmbouter
*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?*
213
214
## Status
215
216 42 dkliban@redhat.com
As an unauthenticated user I can view the status of Pulp workers, resource managers, and celerybeats.
217 1 bmbouter
218 42 dkliban@redhat.com
As an unauthenticated user I can view the status of httpd's connection to the database and message broker.
219
220 46 bmbouter
<span style="color:red;">As an administrator, the WSGI app will not start if all migrations have not been applied</span>
221
222 28 bmbouter
## Plugin API
223 1 bmbouter
224 28 bmbouter
As a plugin writer, I have a plugin API that is semantically versioned at 0.x separate from the REST API
225 1 bmbouter
226 28 bmbouter
As a plugin writer, I can report progress with a message and state
227
228
As a plugin writer, I can report progress with an optional suffix
229
230
As a plugin writer, I can report progress with a total count of things to do an the current count of things done
231
232
As a plugin writer, non-fatal exceptions a on the Task and are included in the Task detail. non_fatal exceptions do not cause the Task to be marked as failed, but may be interpreted by the user as not fully successful.
233
234
As a plugin writer, the working directory is set before Task work is done and cleaned up afterwards. I should not need to interact with the file system outside of the working dir.
235
236
As a plugin writer, I can provide a subclassed Importer. The importer's responsibility is to synchronize the content of a Pulp repository with the content of a remote repository.
237
238
As a plugin writer, I can provide a subclassed Publisher. The publisher's responsibility is to publish content.
239
240
As a plugin writer, I can define unit types by subclassing Content models to provide concrete content unit types to be manged by the platform.
241
242
As a plugin writer, I can interact with and create Artifacts
243
244
As a plugin writer, my app will be discovered by Pulp's app via an entry point provided by the plugin writer
245
246
As a plugin writer, I can use the plugin API to query content units/artifacts associated with a repository.
247 6 Ichimonji10
248 41 jortel@redhat.com
As a plugin writer, I can add and remove content units to and from a repository.
249 1 bmbouter
250 8 Ichimonji10
## CLI
251
252 54 bmbouter
<span style="color:red;">We will port what is there with as little effort as possible *(Does this mean that porting will be easy for developers, or that switching from the Pulp 2-3 CLI will be easy for users? If the former, isn't this an implementation detail that doesn't belong in an MVP document? If the latter, does this mean that we're going to carry forward the issues with pulp-admin, like a lack of status codes?)*</span>
253 1 bmbouter
254 54 bmbouter
<span style="color:red;">repo CRUD</span>  
255
<span style="color:red;">CRUD for importers</span>  
256
<span style="color:red;">CRUD for publishers</span>  
257
<span style="color:red;">trigger syncs</span>  
258
<span style="color:red;">trigger publish</span>  
259
<span style="color:red;">list content in a repo</span>  
260
<span style="color:red;">upload</span>  
261
<span style="color:red;">server status</span>  
262
<span style="color:red;">list and cancel tasks</span>  
263
<span style="color:red;">authn via basic auth</span>  
264
<span style="color:red;">\_(Should the supported set of operations be stated in terms of "The capabilities listed in the 'Authenctication,' 'Repositories,' and 'Filter' sections will be supported by the CLI."?)\_</span>
265 1 bmbouter
266 26 bmbouter
## Download API
267
268
As a plugin writer, I can download files via
269
270
  - http://
271
  - https://
272
  - file://
273
274
As a plugin writer, I can configure a downloader with:
275 27 bmbouter
276
  - Basic Auth
277 26 bmbouter
  - SSL Cert Client Auth
278
  - Custom CAs will be configured via a "trust store" either on the system or similar. Pulp will not do anything to read/load/manage CAs directly.
279
280
As a plugin writer, I can provide arbitrary behaviors for customized downloaders
281
282
  - For example token authentication in the docker plugin
283
284
As a plugin writer, I can have connection pooling/reuse
285
286
As a plugin writer, I have proxy settings
287
288
  - proxy url (containing basic auth info)
289
290
As a plugin writer, I can have great logs
291
292
As a user, I have documentation about how to use something for bandwidth limiting
293
294
As a plugin writer, I can configure the validation mechanisms used at download time
295
296
  - checksum validation - minimum (md5, sha1, sha256, sha512)
297
  - size validation
298
299
<span style="color:red;">As a plugin writer, I expect units that are missing from the remote repository to not be created in Pulp when using the immediate download policy.</span>
300
301
<span style="color:red;">As a plugin writer, I expect units that are missing from the remote repository to be created in Pulp when using background or on_demand download policies.</span>
302
303
As a plugin writer I can configure mirror lists and rotate between the mirrors
304
305
  - round robin
306
  - nearest mirror support
307
308
As a plugin writer, the plugin API provides tooling whereby I can provide the content to be added and removed from the repository. This tooling supports both immediate and deferred downloading.
309
310 1 bmbouter
As a plugin writer I can manage the catalog by using ChangeSets
311 26 bmbouter
312 27 bmbouter
As a plugin writer, the plugin can participate in adding content for cases where the decision to add additional content is based content that has been downloaded.
313 26 bmbouter
314
As a plugin writer, I can fetch content myself (but I am not encouraged to do so) with code I write
315 1 bmbouter
316
As a plugin writer, I can CRUD content units
317
318 56 ttereshc
## {color:red} Consumer Applicability
319 1 bmbouter
320 49 amacdona@redhat.com
<span style="color:red;">Using consumer profiles and repo bindings I can compute applicability with 2.y parity  
321
Performance needs to be awesome</span>
322 11 Ichimonji10
323 49 amacdona@redhat.com
<span style="color:red;">\_(Is the Pulp Consumer going away in Pulp 3? If so, is this section still appropriate?)\_</span>
324 1 bmbouter
325
## Plugin compatibility
326
327
rpm will work with platform  
328
puppet will work with platform  
329
ostree will work with platform  
330
python will work with platform  
331
file_plugin will work with platform  
332
docker will work with platform
333
334
## Migrations
335 20 bmbouter
336
users can run an executable similar to pulp-manage-db that is not named pulp-manage-db *(Why the change in name?)*
337 36 bmbouter
338
<span style="color:red;">What about migrating fields that we don't use in 3.0 but will use in 3.1+. For example the auto-publish feature?</span>
339 1 bmbouter
340
## Glossary
341
342 39 jortel@redhat.com
Repository - A named collection of content.
343
344
Artifact - A file associated with one content (unit). Artifacts are not shared between content (units). Create a content unit using an uploaded file ID as the source for its metadata. Create Artifacts associated with the content unit using an uploaded file ID for each; commit as a single transaction.
345
346
Content (unit) - A single piece of content manged by Pulp. Each file associated with a content (unit) is called an Artifact. Each content (unit) may have zero or many Artifacts.