Skip to content

Commit 93cc1e6

Browse files
committed
Fix upgrade test runtime config
Signed-off-by: Derek McGowan <[email protected]>
1 parent 833d6bc commit 93cc1e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

integration/release_upgrade_linux_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -546,8 +546,7 @@ func (pCtx *podTCtx) shimPid() uint32 {
546546
ctx, cancel := context.WithTimeout(ctx, 30*time.Second)
547547
defer cancel()
548548

549-
// NOTE: use version 2 to be compatible with previous release
550-
shimCli := connectToShim(ctx, t, cfg["containerdEndpoint"].(string), 2, pCtx.id)
549+
shimCli := connectToShim(ctx, t, cfg["containerdEndpoint"].(string), 3, pCtx.id)
551550
return shimPid(ctx, t, shimCli)
552551
}
553552

@@ -634,7 +633,8 @@ func previousReleaseCtrdConfig(t *testing.T, previousReleaseBinDir, targetDir st
634633
version = 2
635634
636635
[plugins."io.containerd.grpc.v1.cri".containerd.runtimes.runc]
637-
runtime_type = "%s/bin/containerd-shim-runc-v2"
636+
runtime_type = "io.containerd.runc.v2"
637+
runtime_path = "%s/bin/containerd-shim-runc-v2"
638638
`,
639639
previousReleaseBinDir)
640640

0 commit comments

Comments
 (0)