Separate overlay implementation from plugin

Put the overlay plugin in a separate package to allow the overlay package to be
used without needing to import and initialize the plugin.

Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
Derek McGowan
2020-08-26 18:40:47 -07:00
parent 1a89feb5d7
commit 70ffb12c1b
3 changed files with 33 additions and 27 deletions

View File

@@ -23,5 +23,5 @@ import (
_ "github.com/containerd/containerd/runtime/v2"
_ "github.com/containerd/containerd/runtime/v2/runc/options"
_ "github.com/containerd/containerd/snapshots/native"
_ "github.com/containerd/containerd/snapshots/overlay"
_ "github.com/containerd/containerd/snapshots/overlay/plugin"
)