From 7b1b416c2298f1aa30950eaae1d2847140ee285a Mon Sep 17 00:00:00 2001 From: iwilltry42 Date: Thu, 24 Mar 2022 17:22:58 +0100 Subject: [PATCH] hotfix: switch default for image import to original tools-node mode, because direct mode failed fairly often --- cmd/image/imageImport.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/image/imageImport.go b/cmd/image/imageImport.go index 7cba06fe..eda2d014 100644 --- a/cmd/image/imageImport.go +++ b/cmd/image/imageImport.go @@ -98,7 +98,7 @@ So if a file './k3d-io/k3d-tools' exists, k3d will try to import it instead of t cmd.Flags().BoolVarP(&loadImageOpts.KeepTar, "keep-tarball", "k", false, "Do not delete the tarball containing the saved images from the shared volume") cmd.Flags().BoolVarP(&loadImageOpts.KeepToolsNode, "keep-tools", "t", false, "Do not delete the tools node after import") - cmd.Flags().StringP("mode", "m", string(k3d.ImportModeAutoDetect), "Which method to use to import images into the cluster [auto, direct, tools]. See https://k3d.io/usage/guides/importing_images/") + cmd.Flags().StringP("mode", "m", string(k3d.ImportModeToolsNode), "Which method to use to import images into the cluster [auto, direct, tools]. See https://k3d.io/usage/guides/importing_images/") /* Subcommands */ // done