Skip to content

Commit 15b4b37

Browse files
committed
Change the wording of the docker storage warning
The preload is currently only available for overlay2, so when using another storage driver it will not be used.
1 parent 747495c commit 15b4b37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/minikube/cmd/start.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1845,7 +1845,7 @@ func validateDockerStorageDriver(drvName string) {
18451845
if si.StorageDriver == "overlay2" {
18461846
return
18471847
}
1848-
out.WarningT("{{.Driver}} is currently using the {{.StorageDriver}} storage driver, consider switching to overlay2 for better performance", out.V{"StorageDriver": si.StorageDriver, "Driver": drvName})
1848+
out.WarningT("{{.Driver}} is currently using the {{.StorageDriver}} storage driver, setting preload=false", out.V{"StorageDriver": si.StorageDriver, "Driver": drvName})
18491849
viper.Set(preload, false)
18501850
}
18511851

0 commit comments

Comments
 (0)