Skip to content

Commit

Permalink
Use portforwarding for qemu with user network
Browse files Browse the repository at this point in the history
Only the SSH and the Docker port (2376) are available
with the slirp network, everything else needs tunneling.
  • Loading branch information
afbjorklund committed Feb 22, 2022
1 parent d00b8b8 commit 065de9b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/minikube/driver/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@ func AllowsPreload(driverName string) bool {

// NeedsPortForward returns true if driver is unable provide direct IP connectivity
func NeedsPortForward(name string) bool {
if name == QEMU {
return true
}
if !IsKIC(name) {
return false
}
Expand Down

0 comments on commit 065de9b

Please sign in to comment.