-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix mountpoints for nix store paths that are files
- Refactor & add additional integration test coverage - Pin containerd to ensure compatible version - Add patch to enable loading compressed archives, i.e. loading images built from upstream `pkgs.dockerTools.buildImage` - Switch to nix-store to remove experimental "nix-command" dependency
- Loading branch information
Showing
15 changed files
with
453 additions
and
334 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,7 @@ jobs: | |
matrix: | ||
test: | ||
- snapshotter | ||
- push-n-pull | ||
- kubernetes | ||
- k3s | ||
- k3s-external | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
commit 786b10f46aa4c10adf6f2c34f1f83d93d84af57f | ||
Author: Edgar Lee <[email protected]> | ||
Date: Fri Feb 23 23:11:48 2024 +0800 | ||
|
||
Automatically decompress archives for transfer service import | ||
|
||
Signed-off-by: Edgar Lee <[email protected]> | ||
|
||
diff --git a/pkg/transfer/archive/importer.go b/pkg/transfer/archive/importer.go | ||
index a9c4cea93..b20055a0b 100644 | ||
--- a/pkg/transfer/archive/importer.go | ||
+++ b/pkg/transfer/archive/importer.go | ||
@@ -24,6 +24,7 @@ import ( | ||
ocispec "github.com/opencontainers/image-spec/specs-go/v1" | ||
|
||
transferapi "github.com/containerd/containerd/api/types/transfer" | ||
+ "github.com/containerd/containerd/archive/compression" | ||
"github.com/containerd/containerd/content" | ||
"github.com/containerd/containerd/images/archive" | ||
"github.com/containerd/containerd/log" | ||
@@ -64,7 +65,14 @@ func (iis *ImageImportStream) Import(ctx context.Context, store content.Store) ( | ||
if iis.forceCompress { | ||
opts = append(opts, archive.WithImportCompression()) | ||
} | ||
- return archive.ImportIndex(ctx, store, iis.stream, opts...) | ||
+ | ||
+ r, err := compression.DecompressStream(iis.stream) | ||
+ if err != nil { | ||
+ return ocispec.Descriptor{}, err | ||
+ } | ||
+ defer r.Close() | ||
+ | ||
+ return archive.ImportIndex(ctx, store, r, opts...) | ||
} | ||
|
||
func (iis *ImageImportStream) MarshalAny(ctx context.Context, sm streaming.StreamCreator) (typeurl.Any, error) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,7 @@ | |
environment.systemPackages = with pkgs; [ | ||
redis | ||
kubectl | ||
nerdctl | ||
]; | ||
|
||
environment.sessionVariables = { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,160 @@ | ||
{ config, pkgs, lib, ... }: | ||
|
||
let | ||
registryConfig = { | ||
version = "0.1"; | ||
storage = { | ||
cache.blobdescriptor = "inmemory"; | ||
filesystem.rootdirectory = "/var/lib/docker-registry"; | ||
}; | ||
http.addr = "0.0.0.0:5000"; | ||
}; | ||
|
||
configFile = | ||
pkgs.writeText | ||
"docker-registry-config.yml" | ||
(builtins.toJSON registryConfig); | ||
|
||
registry = pkgs.nix-snapshotter.buildImage { | ||
name = "ghcr.io/pdtpartners/registry"; | ||
tag = "latest"; | ||
config = { | ||
entrypoint = [ "${pkgs.docker-distribution}/bin/registry" ]; | ||
cmd = [ "serve" configFile ]; | ||
}; | ||
}; | ||
|
||
helloDockerTools = pkgs.dockerTools.buildImage { | ||
name = "localhost:5000/docker-tools/hello"; | ||
tag = "latest"; | ||
config.entrypoint = ["${pkgs.hello}/bin/hello"]; | ||
}; | ||
|
||
helloNixSnapshotter = pkgs.nix-snapshotter.buildImage { | ||
name = "localhost:5000/nix-snapshotter/hello"; | ||
tag = "latest"; | ||
config.entrypoint = ["${pkgs.hello}/bin/hello"]; | ||
}; | ||
|
||
in { | ||
nodes = rec { | ||
rootful = { | ||
virtualisation.containerd = { | ||
enable = true; | ||
nixSnapshotterIntegration = true; | ||
}; | ||
|
||
services.nix-snapshotter = { | ||
enable = true; | ||
}; | ||
|
||
services.preload-containerd = { | ||
enable = true; | ||
targets = [{ | ||
archives = [ | ||
registry | ||
helloDockerTools | ||
helloNixSnapshotter | ||
]; | ||
}]; | ||
}; | ||
|
||
environment.systemPackages = [ | ||
pkgs.nerdctl | ||
]; | ||
}; | ||
|
||
rootless = { | ||
virtualisation.containerd.rootless = { | ||
enable = true; | ||
nixSnapshotterIntegration = true; | ||
}; | ||
|
||
services.nix-snapshotter.rootless = { | ||
enable = true; | ||
}; | ||
|
||
services.preload-containerd.rootless = { | ||
enable = true; | ||
targets = [{ | ||
archives = [ | ||
registry | ||
helloDockerTools | ||
helloNixSnapshotter | ||
]; | ||
address = "$XDG_RUNTIME_DIR/containerd/containerd.sock"; | ||
}]; | ||
}; | ||
|
||
environment.systemPackages = [ | ||
pkgs.nerdctl | ||
]; | ||
|
||
users.users.alice = { | ||
uid = 1000; | ||
isNormalUser = true; | ||
}; | ||
|
||
environment.variables = { | ||
XDG_RUNTIME_DIR = "/run/user/1000"; | ||
}; | ||
}; | ||
}; | ||
|
||
testScript = | ||
let | ||
sudo_su = lib.concatStringsSep " " [ | ||
"sudo" | ||
"--preserve-env=XDG_RUNTIME_DIR,CONTAINERD_ADDRESS,CONTAINERD_SNAPSHOTTER" | ||
"-u" | ||
"alice" | ||
]; | ||
|
||
in '' | ||
def collect_coverage(machine): | ||
coverfiles = machine.succeed("ls /tmp/go-cover").split() | ||
for coverfile in coverfiles: | ||
machine.copy_from_vm(f"/tmp/go-cover/{coverfile}", f"build/go-cover/${config.name}-{machine.name}") | ||
def wait_for_unit(machine, service, user = "alice"): | ||
if "rootless" in machine.name: | ||
machine.wait_until_succeeds(f"systemctl --user --machine={user}@ is-active {service}") | ||
else: | ||
machine.wait_for_unit(service) | ||
def stop_unit(machine, service, user = "alice"): | ||
if "rootless" in machine.name: | ||
machine.succeed(f"systemctl --user --machine={user}@ stop {service}") | ||
else: | ||
machine.succeed(f"systemctl stop {service}") | ||
def test(machine, sudo_su = ""): | ||
wait_for_unit(machine, "nix-snapshotter.service") | ||
wait_for_unit(machine, "containerd.service") | ||
wait_for_unit(machine, "preload-containerd.service") | ||
machine.succeed(f"{sudo_su} nerdctl run -d -p 5000:5000 --name registry ghcr.io/pdtpartners/registry") | ||
with subtest(f"{machine.name}: Push container built with pkgs.dockerTools.buildImage"): | ||
machine.succeed(f"{sudo_su} nerdctl push localhost:5000/docker-tools/hello") | ||
machine.succeed(f"{sudo_su} nerdctl rmi localhost:5000/docker-tools/hello") | ||
with subtest(f"{machine.name}: Push container built with pkgs.nix-snapshotter.buildImage"): | ||
machine.succeed(f"{sudo_su} nerdctl push localhost:5000/nix-snapshotter/hello") | ||
machine.succeed(f"{sudo_su} nerdctl rmi localhost:5000/nix-snapshotter/hello") | ||
with subtest(f"{machine.name}: Pull container built with pkgs.dockerTools.buildImage"): | ||
machine.succeed(f"{sudo_su} nerdctl pull localhost:5000/docker-tools/hello") | ||
with subtest(f"{machine.name}: Pull container built with pkgs.nix-snapshotter.buildImage"): | ||
machine.succeed(f"{sudo_su} nerdctl pull localhost:5000/nix-snapshotter/hello") | ||
stop_unit(machine, "nix-snapshotter") | ||
collect_coverage(machine) | ||
start_all() | ||
test(rootful) | ||
test(rootless, "${sudo_su}") | ||
''; | ||
} |
Oops, something went wrong.