Skip to content

Commit

Permalink
Adding a default NFS mount for /Users with xhyve
Browse files Browse the repository at this point in the history
Removing the Virtio9p flags from the xhyve-driver struct because they
require custom configuration of the boot2docker iso and thus won't
work.  See this note for more information
https://github.com/zchee/docker-machine-driver-xhyve#usage

This resolves issue kubernetes#423
  • Loading branch information
r2d4 committed Aug 1, 2016
1 parent c493cbe commit 966af87
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/minikube/cluster/cluster_darwin.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ type xhyveDriver struct {
UUID string
NFSShare bool
DiskNumber int
Virtio9p bool
Virtio9pFolder string
}

func createXhyveHost(config MachineConfig) *xhyveDriver {
Expand All @@ -62,5 +60,6 @@ func createXhyveHost(config MachineConfig) *xhyveDriver {
Boot2DockerURL: config.GetISOCacheFileURI(),
BootCmd: "loglevel=3 user=docker console=ttyS0 console=tty0 noembed nomodeset norestore waitusb=10 base host=boot2docker",
DiskSize: int64(config.DiskSize),
NFSShare: true,
}
}

0 comments on commit 966af87

Please sign in to comment.