Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update container runtime archive to nerdctl 2.0.2 #472

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions deps/container-runtime-full-archive.conf
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARTIFACT_BASE_URL=https://github.com/containerd/nerdctl/releases/download/v1.7.7
ARTIFACT_BASE_URL=https://github.com/containerd/nerdctl/releases/download/v2.0.2

AARCH64_ARTIFACT=nerdctl-full-1.7.7-linux-arm64.tar.gz
AARCH64_256_DIGEST=b161a20c0e41f9ad999e8411e23c58ece4b3e584ae90b4252b76a39eee4a0c31
AARCH64_ARTIFACT=nerdctl-full-2.0.2-linux-arm64.tar.gz
AARCH64_256_DIGEST=1a4162a82e58ef2feb1ec6b01ca6128a117d1ed8b631b660cbb3cec69a3232f3

X86_64_ARTIFACT=nerdctl-full-1.7.7-linux-amd64.tar.gz
X86_64_256_DIGEST=a731eac93e8e9dda1a0d76dc1606438deb0668ea7d6bd5c5af436353ed9f65c5
X86_64_ARTIFACT=nerdctl-full-2.0.2-linux-amd64.tar.gz
X86_64_256_DIGEST=3bc51168397e22242db415fcc7d9f74ea93fd93cf09a7b3c4ca61beab3c5fafb
5 changes: 4 additions & 1 deletion e2e/e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ func TestE2e(t *testing.T) {

vmName := "fedora"

nerdctlOpt, err := option.New([]string{subject, "shell", vmName, "sudo", "-E", "nerdctl"})
nerdctlOpt, err := option.New(
[]string{subject, "shell", vmName, "sudo", "-E", "nerdctl"},
option.WithNoEnvironmentVariablePassthrough(),
)
if err != nil {
t.Fatalf("failed to initialize a testing option: %v", err)
}
Expand Down
2 changes: 2 additions & 0 deletions e2e/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@ require (
golang.org/x/tools v0.24.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

replace github.com/runfinch/common-tests v0.7.22 => github.com/austinvazquez/common-tests v0.0.0-20241228033943-c5f88688506e
4 changes: 2 additions & 2 deletions e2e/go.sum
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
github.com/austinvazquez/common-tests v0.0.0-20241228033943-c5f88688506e h1:gE1siC1geRChypMVUk5C2Bzsxztbc+GELUHrBnO6aio=
github.com/austinvazquez/common-tests v0.0.0-20241228033943-c5f88688506e/go.mod h1:SWUscDCM6J/IysgeMOU9RrUqozilSpH7ef5OS8LD7jA=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY=
Expand All @@ -14,8 +16,6 @@ github.com/onsi/gomega v1.36.1 h1:bJDPBO7ibjxcbHMgSCoo4Yj18UWbKDlLwX1x9sybDcw=
github.com/onsi/gomega v1.36.1/go.mod h1:PvZbdDc8J6XJEpDK4HCuRBm8a6Fzp9/DmhC9C7yFlog=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/runfinch/common-tests v0.7.22 h1:LnQiSrQmmYUIc600FVsMk265kPnzCeFw94DbbCVDOwo=
github.com/runfinch/common-tests v0.7.22/go.mod h1:zzjBhz8poviFC3/kOmmJsUdiKGxMRoAh/AIUyy3YqGQ=
github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk=
github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo=
golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
Expand Down
Loading