The toolkit to pack, ship, store, and deliver container content
 
 
 
 
 
Go to file
Stephen J Day 2637e29e18 Initial implementation of registry LayerService
This change contains the initial implementation of the LayerService to power
layer push and pulls on the storagedriver. The interfaces presented in this
package will be used by the http application to drive most features around
efficient pulls and resumable pushes.

The file storage/layer.go defines the interface interactions. LayerService is
the root type and supports methods to access Layer and LayerUpload objects.
Pull operations are supported with LayerService.Fetch and push operations are
supported with LayerService.Upload and LayerService.Resume. Reads and writes of
layers are split between Layer and LayerUpload, respectively.

LayerService is implemented internally with the layerStore object, which takes
a storagedriver.StorageDriver and a pathMapper instance.

LayerUploadState is currently exported and will likely continue to be as the
interaction between it and layerUploadStore are better understood. Likely, the
layerUploadStore lifecycle and implementation will be deferred to the
application.

Image pushes pulls will be implemented in a similar manner without the
discrete, persistent upload.

Much of this change is in place to get something running and working. Caveats
of this change include the following:

1. Layer upload state storage is implemented on the local filesystem, separate
   from the storage driver. This must be replaced with using the proper backend
   and other state storage. This can be removed when we implement resumable
   hashing and tarsum calculations to avoid backend roundtrips.
2. Error handling is rather bespoke at this time. The http API implementation
   should really dictate the error return structure for the future, so we
   intend to refactor this heavily to support these errors. We'd also like to
   collect production data to understand how failures happen in the system as
   a while before moving to a particular edict around error handling.
3. The layerUploadStore, which manages layer upload storage and state is not
   currently exported. This will likely end up being split, with the file
   management portion being pointed at the storagedriver and the state storage
   elsewhere.
4. Access Control provisions are nearly completely missing from this change.
   There are details around how layerindex lookup works that are related with
   access controls. As the auth portions of the new API take shape, these
   provisions will become more clear.

Please see TODOs for details and individual recommendations.
2014-11-17 17:54:07 -08:00
client Lots of various golint fixes 2014-11-17 15:46:06 -08:00
cmd Expects storage driver executables to be of the form registry-storage-name 2014-11-06 18:32:06 -08:00
common Lots of various golint fixes 2014-11-17 15:46:06 -08:00
configuration Lots of various golint fixes 2014-11-17 15:46:06 -08:00
open-design Initial open-design proposal 2014-11-10 09:39:20 -08:00
storage Initial implementation of registry LayerService 2014-11-17 17:54:07 -08:00
storagedriver Lots of various golint fixes 2014-11-17 15:46:06 -08:00
.drone.yml Fix drone 2014-11-17 14:44:36 -08:00
CONTRIBUTING.md Initial open-design proposal 2014-11-10 09:39:20 -08:00
LICENSE + license 2014-10-21 13:25:04 -07:00
MAINTAINERS Initial open-design proposal 2014-11-06 13:28:27 -08:00
README.md Test drone 2014-11-13 13:58:52 -08:00
app.go Carve out initial application structure 2014-11-10 19:03:49 -08:00
app_test.go Disambiguate routing for multi-level repository names 2014-11-12 17:07:44 -08:00
context.go Carve out initial application structure 2014-11-10 19:03:49 -08:00
errors.go Lots of various golint fixes 2014-11-17 15:46:06 -08:00
errors_test.go Fixes formatting in errors_test.go to match gofmt rules 2014-11-14 16:00:41 -08:00
helpers.go Carve out initial application structure 2014-11-10 19:03:49 -08:00
images.go Lots of various golint fixes 2014-11-17 15:46:06 -08:00
layer.go Carve out initial application structure 2014-11-10 19:03:49 -08:00
layerupload.go Carve out initial application structure 2014-11-10 19:03:49 -08:00
routes.go Disambiguate routing for multi-level repository names 2014-11-12 17:07:44 -08:00
routes_test.go Add route test case with dangerous path 2014-11-13 14:39:13 -08:00
tags.go Carve out initial application structure 2014-11-10 19:03:49 -08:00
util.go Carve out initial application structure 2014-11-10 19:03:49 -08:00

README.md

docker-registry

Coverage Status Build Status

## TL;DR

License

Apache License