Skip to content

Commit ed72059

Browse files
committed
cmd/snapshots: add gc.root to created snapshots
This adds gc.root label to snapshots created with prepare and commit via the CLI. WIthout this, created snapshots get immediately garbage collected. There may be a better solution but this seems to be a solid stop gap. We may also need to add more functionality around snapshot labeling for the CLI but current use cases are unclear. Signed-off-by: Stephen J Day <[email protected]>
1 parent cfba048 commit ed72059

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

cmd/ctr/commands/snapshots/snapshots.go

+9-2
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,11 @@ var prepareCommand = cli.Command{
304304
defer cancel()
305305

306306
snapshotter := client.SnapshotService(context.GlobalString("snapshotter"))
307-
mounts, err := snapshotter.Prepare(ctx, key, parent)
307+
labels := map[string]string{
308+
"containerd.io/gc.root": time.Now().UTC().Format(time.RFC3339),
309+
}
310+
311+
mounts, err := snapshotter.Prepare(ctx, key, parent, snapshots.WithLabels(labels))
308312
if err != nil {
309313
return err
310314
}
@@ -404,7 +408,10 @@ var commitCommand = cli.Command{
404408
}
405409
defer cancel()
406410
snapshotter := client.SnapshotService(context.GlobalString("snapshotter"))
407-
return snapshotter.Commit(ctx, key, active)
411+
labels := map[string]string{
412+
"containerd.io/gc.root": time.Now().UTC().Format(time.RFC3339),
413+
}
414+
return snapshotter.Commit(ctx, key, active, snapshots.WithLabels(labels))
408415
},
409416
}
410417

0 commit comments

Comments
 (0)