We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f3b223f commit 3f6f231Copy full SHA for 3f6f231
pkg/cluster/nodeutils/util.go
@@ -82,7 +82,7 @@ func LoadImageArchive(n nodes.Node, image io.Reader) error {
82
if err != nil {
83
return err
84
}
85
- cmd := n.Command("ctr", "--namespace=k8s.io", "images", "import", "--digests", "--snapshotter="+snapshotter, "-").SetStdin(image)
+ cmd := n.Command("ctr", "--namespace=k8s.io", "images", "import", "--all-platforms", "--digests", "--snapshotter="+snapshotter, "-").SetStdin(image)
86
if err := cmd.Run(); err != nil {
87
return errors.Wrap(err, "failed to load image")
88
0 commit comments