Skip to content

Commit

Permalink
Bump minimum podman version to 4.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xcarolan committed Aug 15, 2024
1 parent 8e81f8d commit 55fc31f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/minikube/cruntime/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ func AddDockerIO(name string) string {
return addRegistryPreix(name, "docker.io")
}
func addRegistryPreix(name string, prefix string) string {
// we seperate the image name following this logic
// we separate the image name following this logic
// https://pkg.go.dev/github.com/distribution/reference#ParseNormalizedNamed
var reg, usr, img string
p := strings.SplitN(name, "/", 2)
Expand Down
2 changes: 1 addition & 1 deletion pkg/minikube/registry/drvs/podman/podman.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ import (
var docURL = "https://minikube.sigs.k8s.io/docs/drivers/podman/"

// minReqPodmanVer is required the minimum version of podman to be installed for podman driver.
var minReqPodmanVer = semver.Version{Major: 2, Minor: 1, Patch: 0}
var minReqPodmanVer = semver.Version{Major: 4, Minor: 9, Patch: 0}

func init() {
priority := registry.Default
Expand Down

0 comments on commit 55fc31f

Please sign in to comment.