Skip to content

Commit 9bbe3ea

Browse files
committed
Fix the --runtime option of container create is ignored
Signed-off-by: Kay Yan <[email protected]>
1 parent 9cd00de commit 9bbe3ea

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pkg/cmd/container/run_runtime.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ package container
1818

1919
import (
2020
"context"
21+
"path/filepath"
2122
"strings"
2223

2324
"github.com/containerd/containerd"
@@ -47,9 +48,9 @@ func generateRuntimeCOpts(cgroupManager, runtimeStr string) ([]containerd.NewCon
4748
}
4849
runtimeOpts = nil
4950
}
50-
} else {
51+
} else if filepath.IsAbs(runtimeStr) {
5152
// runtimeStr is a runc binary
52-
runcOpts.BinaryName = runtimeStr
53+
runtime = runtimeStr
5354
}
5455
}
5556
o := containerd.WithRuntime(runtime, runtimeOpts)

0 commit comments

Comments
 (0)