feat(server): Apply GZIP compression to all image layers

This fixes #62
This commit is contained in:
Vincent Ambo 2019-10-11 01:28:38 +01:00 committed by Vincent Ambo
parent bf2718cebb
commit 0693e371d6
4 changed files with 15 additions and 9 deletions

View file

@ -126,9 +126,9 @@ let
# Image layer that contains the symlink forest created above. This
# must be included in the image to ensure that the filesystem has a
# useful layout at runtime.
symlinkLayer = runCommand "symlink-layer.tar" {} ''
symlinkLayer = runCommand "symlink-layer.tar.gz" {} ''
cp -r ${contentsEnv}/ ./layer
tar --transform='s|^\./||' -C layer --sort=name --mtime="@$SOURCE_DATE_EPOCH" --owner=0 --group=0 -cf $out .
tar --transform='s|^\./||' -C layer --sort=name --mtime="@$SOURCE_DATE_EPOCH" --owner=0 --group=0 -czf $out .
'';
# Metadata about the symlink layer which is required for serving it.

View file

@ -9,6 +9,7 @@ package builder
import (
"archive/tar"
"compress/gzip"
"io"
"os"
"path/filepath"
@ -16,10 +17,11 @@ import (
"github.com/google/nixery/server/layers"
)
// Create a new tarball from each of the paths in the list and write the tarball
// to the supplied writer.
func tarStorePaths(l *layers.Layer, w io.Writer) error {
t := tar.NewWriter(w)
// Create a new compressed tarball from each of the paths in the list
// and write it to the supplied writer.
func packStorePaths(l *layers.Layer, w io.Writer) error {
gz := gzip.NewWriter(w)
t := tar.NewWriter(gz)
for _, path := range l.Contents {
err := filepath.Walk(path, tarStorePath(t))
@ -32,6 +34,10 @@ func tarStorePaths(l *layers.Layer, w io.Writer) error {
return err
}
if err := gz.Close(); err != nil {
return err
}
return nil
}

View file

@ -270,7 +270,7 @@ func prepareLayers(ctx context.Context, s *State, image *Image, result *ImageRes
} else {
lh := l.Hash()
lw := func(w io.Writer) error {
return tarStorePaths(&l, w)
return packStorePaths(&l, w)
}
entry, err := uploadHashLayer(ctx, s, lh, lw)

View file

@ -15,7 +15,7 @@ const (
// media types
manifestType = "application/vnd.docker.distribution.manifest.v2+json"
layerType = "application/vnd.docker.image.rootfs.diff.tar"
layerType = "application/vnd.docker.image.rootfs.diff.tar.gzip"
configType = "application/vnd.docker.container.image.v1+json"
// image config constants
@ -102,7 +102,7 @@ func Manifest(layers []Entry) (json.RawMessage, ConfigLayer) {
hashes := make([]string, len(layers))
for i, l := range layers {
l.MediaType = "application/vnd.docker.image.rootfs.diff.tar"
l.MediaType = layerType
layers[i] = l
hashes[i] = l.Digest
}