Skip to content

Commit

Permalink
Merge pull request #16973 from afbjorklund/docker-storage-driver-warning
Browse files Browse the repository at this point in the history
Change the wording of the docker storage warning
  • Loading branch information
medyagh authored Aug 2, 2023
2 parents 114051a + 15b4b37 commit 8733436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/minikube/cmd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -1845,7 +1845,7 @@ func validateDockerStorageDriver(drvName string) {
if si.StorageDriver == "overlay2" {
return
}
out.WarningT("{{.Driver}} is currently using the {{.StorageDriver}} storage driver, consider switching to overlay2 for better performance", out.V{"StorageDriver": si.StorageDriver, "Driver": drvName})
out.WarningT("{{.Driver}} is currently using the {{.StorageDriver}} storage driver, setting preload=false", out.V{"StorageDriver": si.StorageDriver, "Driver": drvName})
viper.Set(preload, false)
}

Expand Down

0 comments on commit 8733436

Please sign in to comment.