Skip to content

Commit

Permalink
Allow actually using the generic driver
Browse files Browse the repository at this point in the history
All drivers *must* be in "supportedDrivers"

Delete Podman on Darwin (Mac), not available
  • Loading branch information
afbjorklund committed Jan 6, 2021
1 parent 6dad258 commit d0260cc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/minikube/driver/driver_darwin.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var supportedDrivers = []string{
HyperKit,
VMware,
Docker,
Podman,
Generic,
}

func VBoxManagePath() string {
Expand Down
1 change: 1 addition & 0 deletions pkg/minikube/driver/driver_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ var supportedDrivers = []string{
None,
Docker,
Podman,
Generic,
}

// VBoxManagePath returns the path to the VBoxManage command
Expand Down
1 change: 1 addition & 0 deletions pkg/minikube/driver/driver_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ var supportedDrivers = []string{
HyperV,
VMware,
Docker,
Generic,
}

// TODO: medyagh add same check for kic docker
Expand Down

0 comments on commit d0260cc

Please sign in to comment.