Skip to content

Commit

Permalink
Merge branch 'kubernetes:master' into 19577
Browse files Browse the repository at this point in the history
  • Loading branch information
xcarolan authored Sep 9, 2024
2 parents 936d2a8 + c51ec7a commit 8034fcb
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Release Notes

## Version 1.34.1 - 2024-09-04
## Version 1.34.0 - 2024-09-04

Breaking Changes:
* Bump minimum podman version to 4.9.0 [#19457](https://github.com/kubernetes/minikube/pull/19457)

* Disallow using Docker Desktop 4.34.0
Features:
* Bump default Kubernetes version to v1.31.0 [#19435](https://github.com/kubernetes/minikube/pull/19435)
* Add new driver for macOS: vfkit [#19423](https://github.com/kubernetes/minikube/pull/19423)
Expand Down
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ command = "pwd && cd themes/docsy && npm install && git submodule update -f --in

[build.environment]
NODE_VERSION = "20.17.0"
HUGO_VERSION = "v0.134.0"
HUGO_VERSION = "v0.134.1"

[context.production.environment]
HUGO_ENV = "production"
Expand Down
2 changes: 1 addition & 1 deletion pkg/minikube/assets/addons.go
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ var Addons = map[string]*Addon{
"registry-proxy.yaml",
"0640"),
}, false, "registry", "minikube", "", "", map[string]string{
"Registry": "registry:2.8.3@sha256:12120425f07de11a1b899e418d4b0ea174c8d4d572d45bdb640f93bc7ca06a3d",
"Registry": "registry:2.8.3@sha256:ac0192b549007e22998eb74e8d8488dcfe70f1489520c3b144a6047ac5efbe90",
"KubeRegistryProxy": "k8s-minikube/kube-registry-proxy:0.0.6@sha256:b3fa0b2df8737fdb85ad5918a7e2652527463e357afff83a5e5bb966bcedc367",
}, map[string]string{
"KubeRegistryProxy": "gcr.io",
Expand Down
11 changes: 11 additions & 0 deletions pkg/minikube/registry/drvs/docker/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,17 @@ func checkDockerDesktopVersion(version string) (s registry.State) {
Fix: "Update Docker Desktop to 4.16.1 or greater",
}
}

if runtime.GOOS == "darwin" && currSemver.EQ(semver.MustParse("4.34.0")) {
return registry.State{
Reason: "PROVIDER_DOCKER_DESKTOP_VERSION_BAD",
Running: true,
Error: errors.New("Docker Desktop 4.34.0 has a regression that prevents minikube from listing the containers"),
Installed: true,
Fix: "Use a different Docker desktop version, more info at https://github.com/docker/cli/issues/5412",
}
}

return s
}

Expand Down

0 comments on commit 8034fcb

Please sign in to comment.