File tree 25 files changed +17
-3348
lines changed
25 files changed +17
-3348
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,7 @@ require (
39
39
require (
40
40
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect
41
41
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20231105174938-2b5cbb29f3e2 // indirect
42
+ github.com/BraveY/snapshotter-converter v0.0.5 // indirect
42
43
github.com/CloudNativeAI/model-spec v0.0.2 // indirect
43
44
github.com/Microsoft/go-winio v0.6.2 // indirect
44
45
github.com/Microsoft/hcsshim v0.11.5 // indirect
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 h1:bvDV9
3
3
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 /go.mod h1:8o94RPi1/7XTJvwPpRSzSUedZrtlirdB3r9Z20bi2f8 =
4
4
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20231105174938-2b5cbb29f3e2 h1:dIScnXFlF784X79oi7MzVT6GWqr/W1uUt0pB5CsDs9M =
5
5
github.com/AdamKorcz/go-118-fuzz-build v0.0.0-20231105174938-2b5cbb29f3e2 /go.mod h1:gCLVsLfv1egrcZu+GoJATN5ts75F2s62ih/457eWzOw =
6
+ github.com/BraveY/snapshotter-converter v0.0.5 h1:h3zAB31u16EOkshS2J9Nx40RiWSjH6zd5baOSmjLCOg =
7
+ github.com/BraveY/snapshotter-converter v0.0.5 /go.mod h1:nOVwsdXqdeltxr12x0t0JIbYDD+cdmdBx0HA2pYpxQY =
6
8
github.com/BurntSushi/toml v0.3.1 /go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU =
7
9
github.com/CloudNativeAI/model-spec v0.0.2 h1:uCO86kMk8wwadn8vKs0wT4petig5crByTIngdO3L2cQ =
8
10
github.com/CloudNativeAI/model-spec v0.0.2 /go.mod h1:3U/4zubBfbUkW59ATSg41HnkYyKrKUcKFH/cVdoPQnk =
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ import (
20
20
originprovider "github.com/dragonflyoss/nydus/contrib/nydusify/pkg/provider"
21
21
"github.com/goharbor/acceleration-service/pkg/remote"
22
22
23
+ "github.com/BraveY/snapshotter-converter/converter"
23
24
"github.com/dragonflyoss/nydus/contrib/nydusify/pkg/converter/provider"
24
- "github.com/dragonflyoss/nydus/contrib/nydusify/pkg/snapshotter/converter"
25
25
"github.com/dragonflyoss/nydus/contrib/nydusify/pkg/utils"
26
26
"github.com/dustin/go-humanize"
27
27
"github.com/goharbor/acceleration-service/pkg/platformutil"
Original file line number Diff line number Diff line change @@ -21,14 +21,14 @@ import (
21
21
22
22
"github.com/containerd/containerd/labels"
23
23
24
+ "github.com/BraveY/snapshotter-converter/converter"
24
25
"github.com/containerd/containerd"
25
26
"github.com/containerd/containerd/content/local"
26
27
"github.com/containerd/containerd/namespaces"
27
28
"github.com/containerd/containerd/reference/docker"
28
29
"github.com/dragonflyoss/nydus/contrib/nydusify/pkg/committer/diff"
29
30
parserPkg "github.com/dragonflyoss/nydus/contrib/nydusify/pkg/parser"
30
31
"github.com/dragonflyoss/nydus/contrib/nydusify/pkg/provider"
31
- "github.com/dragonflyoss/nydus/contrib/nydusify/pkg/snapshotter/converter"
32
32
"github.com/dragonflyoss/nydus/contrib/nydusify/pkg/utils"
33
33
"github.com/dustin/go-humanize"
34
34
"github.com/opencontainers/go-digest"
Original file line number Diff line number Diff line change @@ -24,9 +24,9 @@ import (
24
24
"github.com/dragonflyoss/nydus/contrib/nydusify/pkg/converter/provider"
25
25
pkgPvd "github.com/dragonflyoss/nydus/contrib/nydusify/pkg/provider"
26
26
27
+ snapConv "github.com/BraveY/snapshotter-converter/converter"
27
28
"github.com/dragonflyoss/nydus/contrib/nydusify/pkg/external/modctl"
28
29
"github.com/dragonflyoss/nydus/contrib/nydusify/pkg/parser"
29
- snapConv "github.com/dragonflyoss/nydus/contrib/nydusify/pkg/snapshotter/converter"
30
30
"github.com/dragonflyoss/nydus/contrib/nydusify/pkg/utils"
31
31
32
32
"encoding/json"
Original file line number Diff line number Diff line change 6
6
"path/filepath"
7
7
"testing"
8
8
9
- snapConv "github.com/dragonflyoss/nydus/contrib/nydusify/pkg/ snapshotter/converter"
9
+ snapConv "github.com/BraveY/ snapshotter-converter /converter"
10
10
"github.com/opencontainers/go-digest"
11
11
ocispec "github.com/opencontainers/image-spec/specs-go/v1"
12
12
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ import (
13
13
"path/filepath"
14
14
"strings"
15
15
16
+ "github.com/BraveY/snapshotter-converter/converter"
16
17
"github.com/containerd/containerd/archive/compression"
17
18
"github.com/containerd/containerd/content"
18
19
"github.com/containerd/containerd/images"
@@ -25,7 +26,6 @@ import (
25
26
"github.com/dragonflyoss/nydus/contrib/nydusify/pkg/checker/tool"
26
27
"github.com/dragonflyoss/nydus/contrib/nydusify/pkg/converter/provider"
27
28
"github.com/dragonflyoss/nydus/contrib/nydusify/pkg/parser"
28
- "github.com/dragonflyoss/nydus/contrib/nydusify/pkg/snapshotter/converter"
29
29
nydusifyUtils "github.com/dragonflyoss/nydus/contrib/nydusify/pkg/utils"
30
30
"github.com/dustin/go-humanize"
31
31
"github.com/goharbor/acceleration-service/pkg/errdefs"
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- go 1.23.1
2
-
3
- toolchain go1.23.6
1
+ go 1.24.0
4
2
5
3
use (
6
4
./contrib/nydus-overlayfs
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ import (
11
11
"path/filepath"
12
12
"testing"
13
13
14
+ "github.com/BraveY/snapshotter-converter/converter"
14
15
"github.com/containerd/log"
15
- "github.com/dragonflyoss/nydus/contrib/nydusify/pkg/snapshotter/converter"
16
16
"github.com/stretchr/testify/require"
17
17
18
18
"github.com/dragonflyoss/nydus/smoke/tests/texture"
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ import (
18
18
"github.com/containerd/containerd/content/local"
19
19
"github.com/containerd/log"
20
20
21
+ "github.com/BraveY/snapshotter-converter/converter"
21
22
"github.com/dragonflyoss/nydus/contrib/nydusify/pkg/external/modctl"
22
- "github.com/dragonflyoss/nydus/contrib/nydusify/pkg/snapshotter/converter"
23
23
"github.com/dragonflyoss/nydus/contrib/nydusify/pkg/snapshotter/external"
24
24
"github.com/dragonflyoss/nydus/contrib/nydusify/pkg/snapshotter/external/backend"
25
25
"github.com/dragonflyoss/nydus/smoke/tests/tool"
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ import (
10
10
"testing"
11
11
"time"
12
12
13
+ "github.com/BraveY/snapshotter-converter/converter"
13
14
"github.com/containerd/nydus-snapshotter/pkg/supervisor"
14
- "github.com/dragonflyoss/nydus/contrib/nydusify/pkg/snapshotter/converter"
15
15
"github.com/dragonflyoss/nydus/smoke/tests/texture"
16
16
"github.com/dragonflyoss/nydus/smoke/tests/tool"
17
17
"github.com/dragonflyoss/nydus/smoke/tests/tool/test"
Original file line number Diff line number Diff line change 8
8
"path/filepath"
9
9
"testing"
10
10
11
- "github.com/dragonflyoss/nydus/contrib/nydusify/pkg/ snapshotter/converter"
11
+ "github.com/BraveY/ snapshotter-converter /converter"
12
12
"github.com/dragonflyoss/nydus/smoke/tests/texture"
13
13
"github.com/dragonflyoss/nydus/smoke/tests/tool"
14
14
"github.com/dragonflyoss/nydus/smoke/tests/tool/test"
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ import (
10
10
"path/filepath"
11
11
"testing"
12
12
13
+ "github.com/BraveY/snapshotter-converter/converter"
13
14
"github.com/containerd/log"
14
- "github.com/dragonflyoss/nydus/contrib/nydusify/pkg/snapshotter/converter"
15
15
"github.com/dragonflyoss/nydus/smoke/tests/texture"
16
16
"github.com/dragonflyoss/nydus/smoke/tests/tool"
17
17
"github.com/dragonflyoss/nydus/smoke/tests/tool/test"
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import (
10
10
"syscall"
11
11
"testing"
12
12
13
- "github.com/dragonflyoss/nydus/contrib/nydusify/pkg/ snapshotter/converter"
13
+ "github.com/BraveY/ snapshotter-converter /converter"
14
14
"github.com/dragonflyoss/nydus/smoke/tests/tool"
15
15
"github.com/opencontainers/go-digest"
16
16
"github.com/stretchr/testify/require"
Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ import (
16
16
"syscall"
17
17
"testing"
18
18
19
+ "github.com/BraveY/snapshotter-converter/converter"
19
20
"github.com/containerd/containerd/archive"
20
21
"github.com/containerd/containerd/content/local"
21
- "github.com/dragonflyoss/nydus/contrib/nydusify/pkg/snapshotter/converter"
22
22
"github.com/opencontainers/go-digest"
23
23
"github.com/pkg/xattr"
24
24
"github.com/stretchr/testify/assert"
Original file line number Diff line number Diff line change 8
8
"path/filepath"
9
9
"testing"
10
10
11
- "github.com/dragonflyoss/nydus/contrib/nydusify/pkg/ snapshotter/converter"
11
+ "github.com/BraveY/ snapshotter-converter /converter"
12
12
"github.com/dragonflyoss/nydus/smoke/tests/texture"
13
13
"github.com/dragonflyoss/nydus/smoke/tests/tool"
14
14
"github.com/dragonflyoss/nydus/smoke/tests/tool/test"
You can’t perform that action at this time.
0 commit comments