From 413fbe82c75b4964f73b77a73f3ae87741750c31 Mon Sep 17 00:00:00 2001 From: Austin Vazquez Date: Sat, 10 Feb 2024 16:36:05 -0800 Subject: [PATCH] Fix unpacker link in remote snapshotter docs Signed-off-by: Austin Vazquez --- docs/remote-snapshotter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/remote-snapshotter.md b/docs/remote-snapshotter.md index a14ab4065..cf33632a6 100644 --- a/docs/remote-snapshotter.md +++ b/docs/remote-snapshotter.md @@ -87,7 +87,7 @@ if _, err := client.Pull(ctx, ref, The containerd client queries remote snapshots to the underlying remote snapshotter using snapshotter APIs. This section describes the high-level overview of how snapshotter APIs are used for remote snapshots functionality, with some piece of pseudo-codes that describe the simplified logic implemented in the containerd client. -For more details, see [`unpacker.go`](../pkg/unpack/unpacker.go) that implements this logic. +For more details, see [`unpacker.go`](../core/unpack/unpacker.go) that implements this logic. During image pull, the containerd client calls `Prepare` API with the label `containerd.io/snapshot.ref`. This is a containerd-defined label which contains ChainID that targets a committed snapshot that the client is trying to prepare.