Skip to content

Commit

Permalink
Implement mounting directories into minikubes run by vmware.
Browse files Browse the repository at this point in the history
  • Loading branch information
ne0h committed May 14, 2019
1 parent 1d3b96b commit 936911e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/minikube/cluster/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -380,6 +380,8 @@ func GetVMHostIP(host *host.Host) (net.IP, error) {
return ip, nil
case "xhyve", "hyperkit":
return net.ParseIP("192.168.64.1"), nil
case "vmware":
return net.ParseIP("192.168.4.1"), nil
default:
return []byte{}, errors.New("Error, attempted to get host ip address for unsupported driver")
}
Expand Down

0 comments on commit 936911e

Please sign in to comment.