Skip to content

Commit 7a4216e

Browse files
committed
UI: remove unimplemented image load error message for podman.
minikube start -d podman issued a confusing error message that image loading is unimplemented for the podman driver This change replaces this error message with a log message without changing anything else in the kicbase image loading Signed-off-by: Michael Adam <[email protected]>
1 parent d96de05 commit 7a4216e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pkg/minikube/node/cache.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,8 @@ func beginDownloadKicBaseImage(g *errgroup.Group, cc *config.ClusterConfig, down
170170
}
171171

172172
if cc.Driver == driver.Podman {
173-
return fmt.Errorf("not yet implemented, see issue #8426")
173+
klog.Infof("iskipping image load from cache: not implemented for podman. see issue #8426")
174+
return nil
174175
}
175176
if driver.IsDocker(cc.Driver) && err == nil {
176177
klog.Infof("Loading %s from local cache", img)

0 commit comments

Comments
 (0)