File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
pkg/minikube/registry/drvs/docker Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 4
4
5
5
Breaking Changes:
6
6
* Bump minimum podman version to 4.9.0 [ #19457 ] ( https://github.com/kubernetes/minikube/pull/19457 )
7
-
7
+ * Disallow using Docker Desktop 4.34.0
8
8
Features:
9
9
* Bump default Kubernetes version to v1.31.0 [ #19435 ] ( https://github.com/kubernetes/minikube/pull/19435 )
10
10
* Add new driver for macOS: vfkit [ #19423 ] ( https://github.com/kubernetes/minikube/pull/19423 )
Original file line number Diff line number Diff line change @@ -289,6 +289,17 @@ func checkDockerDesktopVersion(version string) (s registry.State) {
289
289
Fix : "Update Docker Desktop to 4.16.1 or greater" ,
290
290
}
291
291
}
292
+
293
+ if runtime .GOOS == "darwin" && currSemver .EQ (semver .MustParse ("4.34.0" )) {
294
+ return registry.State {
295
+ Reason : "PROVIDER_DOCKER_DESKTOP_VERSION_BAD" ,
296
+ Running : true ,
297
+ Error : errors .New ("Docker Desktop 4.34.0 has a regression that prevents minikube from listing the containers" ),
298
+ Installed : true ,
299
+ Fix : "Use a different Docker desktop version, more info at https://github.com/docker/cli/issues/5412" ,
300
+ }
301
+ }
302
+
292
303
return s
293
304
}
294
305
You can’t perform that action at this time.
0 commit comments