Project

Profile

Help

Story #1209

closed

As user, I can upload docker v2 blobs and v2 manifest

Added by jluza over 8 years ago. Updated about 5 years ago.

Status:
CLOSED - WONTFIX
Priority:
Normal
Assignee:
-
Start date:
Due date:
% Done:

0%

Estimated time:
Platform Release:
Target Release - Docker:
Groomed:
No
Sprint Candidate:
No
Tags:
Pulp 2
Sprint:
Quarter:

Description

As user, I can upload docker v2 blobs and v2 manifest directly to pulp without performing sync operation. The solution will consists of 2 new importers: docker_blob_importer, docker_manifest_importer. Each of them allows user to upload different kind of content directly from local machine.

new types:
+BLOB_TYPE_ID = 'docker_blob'
+BLOB_IMPORTER_TYPE_ID = 'docker_blob_importer'
+BLOB_IMPORTER_CONFIG_FILE_NAME = 'server/plugins.conf.d/docker_blob_importer.json'

+MANIFEST_TYPE_ID = 'docker_manifest' # <- not sure if this will be needed
+MANIFEST_IMPORTER_TYPE_ID = 'docker_manifest_importer'
+MANIFEST_IMPORTER_CONFIG_FILE_NAME = 'server/plugins.conf.d/docker_manifest_importer.json'

docker_blob type will be implemented as models.Blob (already in the upstream code)

blob_importer import sequence (similar as in IsoImporter):
- init_unit
- move file
- save_unit

manifest_importer import steps (this is how I image it)
- parse manifest
- set specified repo attributes
- validation?

Actions #1

Updated by ipanova@redhat.com over 8 years ago

  • Subject changed from [RFE] raw content importers to [RFE] As user, I can upload docker v2 blobs and v2 manifest
Actions #2

Updated by bmbouter over 8 years ago

  • Subject changed from [RFE] As user, I can upload docker v2 blobs and v2 manifest to As user, I can upload docker v2 blobs and v2 manifest
  • Description updated (diff)
Actions #3

Updated by bmbouter over 8 years ago

jluza: I don't have much to add on the content of the story, but once this story gets enough comments on it, the next step will be to set the 'Sprint Candidate' flag to True. Then it will go through a final round of discussion w/ Pulp team before it receives the 'Groomed' flag.

Actions #4

Updated by acarter@redhat.com over 8 years ago

bmbouter wrote:

jluza: I don't have much to add on the content of the story, but once this story gets enough comments on it, the next step will be to set the 'Sprint Candidate' flag to True. Then it will go through a final round of discussion w/ Pulp team before it receives the 'Groomed' flag.

bmbouter I think jluza primarily is looking for feedback on the design since he may need to write a patch for our internal instance well before you guys could get to this (like next week); we want to make sure that the change is something you'd be willing to pull into Pulp later

Actions #5

Updated by jluza over 8 years ago

wrote:

bmbouter wrote:

jluza: I don't have much to add on the content of the story, but once this story gets enough comments on it, the next step will be to set the 'Sprint Candidate' flag to True. Then it will go through a final round of discussion w/ Pulp team before it receives the 'Groomed' flag.

bmbouter I think jluza primarily is looking for feedback on the design since he may need to write a patch for our internal instance well before you guys could get to this (like next week); we want to make sure that the change is something you'd be willing to pull into Pulp later

Yes. What she said.

Actions #6

Updated by mhrivnak over 8 years ago

Implementation wise, this could be one importer. The upload method can accept both types and do the "right thing" for each.

I don't think this is a feature that other pulp users will want to take advantage of. It requires having a docker registry running, using some custom tool to get manifests and blobs from its API (and recording each manifest's digest somewhere, which is only provided in a custom header), and then using more custom code to upload those to pulp. I think nearly all users will find it easier to just have pulp sync from the local registry. I understand that you have a requirement to store build artifacts outside of pulp, which is what is motivating this RFE, but most pulp users do not have that requirement.

Given that, since these are plugins, you could have your own custom importer that uses ours as a base class, and implements the upload feature any way you like.

I'll again suggest that if your goal is to store the build artifact in a separate system, I would consider this workflow:

1. build an image
2. start a fresh local registry in a docker container, and mount in storage to the correct /var/lib/... location
3. push the image
4. stop the container
5. tar up the mounted-in storage and save it

Now any time you want to access that image, you only need to untar, and run step 2.

Actions #7

Updated by ttomecek over 8 years ago

Since this is docker and v2, the archiving mechanism will change (maybe even soon). Especially when docker fixes save and load and makes it v2 friendly. I can imagine usecases, where pulp users would be interested in direct upload and not the sync. Why would you want to stand up docker registry if you already have pulp? My point is that I want to have options which suit multiple workflows and not have single solution which works for one workflow but is inefficient to others.

Michael, I tried your proposed solution and am not very fond of it:

  • the filesystem structure is a bit confusing: it would be nicer if we had straightforward structure with manifest(s) and a set of blobs, all at root level, e.g.

./manifest ./1234567890zxcasdqwe ./qweasdzxc1234567890

instead of

└── v2 ├── blobs │   └── sha256 │   ├── 1d │   │   └── 1db09adb5ddd7f1a07b6d585a7db747a51c7bd17418d47e91f901bdf420abd66 │   │   └── data │   ├── 2f │   │   └── 2faca39141e7b1a7177e42b471cbeb7f85e323750d932a5794ecbb07834c2fc4 │   │   └── data │   ├── 3b │   │   └── 3b4156bf9d1c3af034851a08b18b8a33eb6a66eeb14a2af7484855a87571ef6a │   │   └── data └── repositories └── httpd ├── _layers │   └── sha256 │   ├── 2faca39141e7b1a7177e42b471cbeb7f85e323750d932a5794ecbb07834c2fc4 │   │   └── link │   └── a3ed95caeb02ffe68cdd9fd84406680ae93d633cb16422d00e8a7c22955b46d4 │   └── link ├── _manifests │   ├── revisions │   │   └── sha256 │   │   └── 3b4156bf9d1c3af034851a08b18b8a33eb6a66eeb14a2af7484855a87571ef6a │   │   ├── link │   │   └── signatures │   │   └── sha256 │   │   └── ca4e585d30b78fc6edda4728874c0be420d25c050bac1d9469b17ddd92f44c82 │   │   └── link │   └── tags │   └── latest │   ├── current │   │   └── link │   └── index │   └── sha256 │   └── 3b4156bf9d1c3af034851a08b18b8a33eb6a66eeb14a2af7484855a87571ef6a │   └── link └── _uploads

  • if we add a new service for every tiny little thing, we'll end up with extremely fragile and complicated infrastructure (I feel like we are almost there: stuff breaks often now and I don't want to make the whole infra any more complicated) -- I'm pretty much fine with adding tools, I have serious problems with adding new services, especially for those where we don't control code

Upstream docker issues so engine is able to output blobs and manifest so we can make this happen easily:

https://github.com/docker/distribution/issues/727
https://github.com/docker/docker/issues/15794

Actions #8

Updated by mhrivnak over 8 years ago

Once docker upstream implements "save" for v2, then I definitely want pulp to support upload of that content. Having followed that issue upstream for some time, I do not anticipate those features being added in the near future. Until then, I don't think our other users are interested in doing upload with a file layout that we invent and that requires a custom tool to produce.

I also don't want to depend on running the upstream registry, but I don't see that there is any scenario being proposed right now that avoids it. Do you?

Actions #9

Updated by jluza over 8 years ago

Let's face the facts. Would it by difficult to implement this? I will give you answer: it wouldn't. Because I was able to implement blob importer in 2 days - and I've never done this before so I had to find you how plugins in pulp work. That notwithstanding, I would be one who would do the code. Would it be difficult to maintain? Well, my version of blob importer takes literally 3-5 lines of active code, everything else are just layers, constants, plugin configurations. And what is probably the most important fact, there are no new code needed for this. Everything is already in pulp_docker. We don't need anything what isn't already part of sync process. So only change is in way how pulp will get image files.

Regarding to other users interests and special tool needed for fetching the content. I'm not sure if I understood correctly your plans with pulp and it's docker support. I thought pulp - in docker scope - should be alternative for official v2 registry. I expected it will support full docker v2 API. And I can imagine that with crane, pulp can support of most of the API mentioned here: http://docs.docker.com/registry/spec/api/
But obviously uploading content to registry is not covered. The only way how to do that in pulp is via sync. But official API gives user chance to download content of image to local disk and from there upload it again to registry. As a user I would be probably disappointed pulp doesn't give me that feature.
That's why I don't understand your argument of special tool for download content. This special tool could be called curl or wget. Just because there's no cmd command in official docker client doesn't mean that users won't want be able to do this.

Actions #10

Updated by mhrivnak over 8 years ago

I sense some frustration, but let's keep in mind that we all want to find the best solution. I think there is a communication gap, so I will spell out in more detail what I believe is your proposal, and what problems I see.

Pulp and crane implement a read-only docker registry API. Pulp does not support a user doing "docker push" direct to pulp. There has been extensive discussion elsewhere about why, but it comes down to this; mapping authn and authz from docker onto pulp was impossible with v1 and very difficult with v2, and in general implementing and maintaining multiple write APIs that are conceptually different is exceptionally complex. Trying to do those things in a Satellite deployment multiplies the complexity even further.

Pulp is not trying to be a drop-in replacement for the upstream docker registry. Pulp provides value as a repository management tool that lets you manage many different kinds of content with one API, and lets you achieve more advanced workflows like promotion.

Hopefully that clarifies pulp's goals with regard to docker functionality, but let me know if you have questions.

Now I'll describe what I think is your proposal. Please correct me if I'm not understanding it.

A build workflow will happen, the details of which are unimportant. A docker daemon will have the newly built image. Because the docker engine still stores content in v1 data structures, it does not create a manifest until the "push" workflow. The only way to get the manifest and blobs out of the daemon is to initiate a "push" to a running registry.

Once the manifest and blobs have been pushed to a registry, now your goal is to get the individual manifest and blob files. I am only aware of two options.

1) Try to retrieve them directly from the registry's filesystem. I assume this is possible, but would be wise to avoid, since their filesystem layout may not be a public API and is thus subject to change.

2) Use the REST API to retrieve the manifest and blobs. You will first need to know the name of the repository and the manifest's tag name. Then you do a GET for that manifest. (Note that the v2 API only provides the manifest's digest in a custom header, so you would need to save that value separately.) Now you must parse the manifest (which is JSON) to determine which blobs it references. With that parsing complete, you must do a GET request for each blob. Note that manifests sometimes reference the same blob ID more than once, which makes this workflow a bit more complex.

If you have a simpler idea in mind, please share. But as far as I can tell, you would need to write a custom tool to do one of the above options, and that tool would need to be smart enough to parse and read a manifest, then construct blob URLs.

Then you would upload each individual file to pulp, which depends on the new plugin code that you would have to write.

If you think that is the best workflow for your purposes, I am happy to support that. But I do not think that is a desirable user story for upstream pulp; an upstream pulp user would just have pulp do a sync from the registry. Pulp was designed to be plugable so that users like you can extend existing plugins or make your own, so I would suggest doing that.

If you have a better idea, I would be very happy to hear it. Does this clarify things? Please let me know what additional questions you have.

Actions #11

Updated by mhrivnak over 8 years ago

  • Status changed from NEW to CLOSED - WONTFIX

I think you have decided to go a different direction, so I am closing this request.

Actions #12

Updated by tomckay@redhat.com almost 7 years ago

http://rhelblog.redhat.com/2017/05/11/skopeo-copy-to-the-rescue/

$ sudo skopeo copy docker://devel.example.com:5000/openshift3/logging-deployment:3.1.0 dir://home/vagrant/tmp/saved-images
Getting image source signatures
Copying blob sha256:9eeb1e6338117fc918ccd0e1c2096c3b6ed57307123d384d9b6a1592a2e03a86
 67.52 MB / 67.52 MB [=========================================================]
Copying blob sha256:fe6e7d1bf96b21ee3321e555724b38a8d049cd3c391482d600eb33ac8686dd9f
 19.28 MB / 22.49 MB [================================================>--------]
Copying blob sha256:597ff2da8719b2239409cf962b73a34993f6974c2837defb7637d20720e95508
 17.78 MB / 30.10 MB [=================================>-----------------------]
Copying blob sha256:093eb51f9eded16957baefff0fe18cc632e2a1f3c2cb851743ff755c4b0ec257
 54.34 MB / 54.34 MB [=========================================================]
Writing manifest to image destination
Storing signatures
[vagrant@devel foreman]$ ls ~/tmp/saved-images/
093eb51f9eded16957baefff0fe18cc632e2a1f3c2cb851743ff755c4b0ec257.tar
597ff2da8719b2239409cf962b73a34993f6974c2837defb7637d20720e95508.tar
9eeb1e6338117fc918ccd0e1c2096c3b6ed57307123d384d9b6a1592a2e03a86.tar
fe6e7d1bf96b21ee3321e555724b38a8d049cd3c391482d600eb33ac8686dd9f.tar
manifest.json

Is this relevant? Could the output from skopeo be uploaded?

Is adding full push endpoint viable in current environment of contianers?

Actions #13

Updated by bmbouter about 5 years ago

  • Tags Pulp 2 added

Also available in: Atom PDF