This is a Vagrant plugin that adds an xhyve provider to Vagrant.
- Sorta works
You need to use sudo for most vagrant actions with the xhyve driver, due to the entitlements needed for xhyve to run without sudo. More details in the xhyve github issue.
Also, sometimes launching a VM just fails. But I'm not quite sure why.
Install using standard Vagrant plugin installation methods. After
installing, vagrant up
and specify the xhyve
provider. An example is
shown below.
$ vagrant plugin install vagrant-xhyve
...
$ sudo vagrant up --provider=xhyve
...
Of course prior to doing this, you'll need to obtain an xhyve-compatible box file for Vagrant.
After installing the plugin (instructions above), you can try an xhyve ubuntu linux example. This is similar to the example from the xhyve intro blog post.
$ mkdir xhyve-vagrant
$ cd xhyve-vagrant
$ vagrant init oldpatricka/ubuntu-14.04
$ sudo vagrant up --provider xhyve
...
This will start an Ubuntu Linux instance. you can log in with:
$ sudo vagrant ssh
The vagrant-xhyve box format is pretty straightforward. See the example_box/ directory. That directory also contains instructions on how to build a box.
This provider exposes quite a few provider-specific configuration options:
memory
- The amount of memory to give the VM. This can just be a simple integer for memory in MB or you can use the suffixed style, eg. 2G for two Gigabytescpus
- The number of CPUs to give the VMxhyve_binary
- use a custom xhyve version (for example, the version of xhyve included with Docker for Mac Beta is interesting. The path is/Applications/Docker.app/Contents/MacOS/com.docker.hyperkit
. )
These can be set like typical provider-specific configuration:
Vagrant.configure("2") do |config|
# ... other stuff
config.vm.provider :xhyve do |xhyve|
xhyve.cpus = 2
xhyve.memory = "1G"
xhyve.xhyve_binary = "/Applications/Docker.app/Contents/MacOS/com.docker.hyperkit"
end
end
There is minimal support for synced folders. Upon vagrant up
,
vagrant reload
, and vagrant provision
, the XHYVE provider will use
rsync
(if available) to uni-directionally sync the folder to
the remote machine over SSH.
Q. Should I use this for my work?
A. Do you want to keep your job? I'm not even sure you should use this for toy projects.
Q. Why?
A. This project is powered by ignorance and good intentions.
Q. Will I even not have to use sudo?
A. There's a theory in that issue linked above that wrapping xhyve in an app store app would help. If that were the case, you could probably use the embedded binary with vagrant-xhyve.
This plugin was heavilly cribbed from the vagrant-aws and vagrant-virtualbox providers. So thanks for those.
This also uses the nice xhyve-ruby gem, by Dale Hamel.
To work on the vagrant-xhyve
plugin, clone this repository out, and use
Bundler to get the dependencies:
$ bundle
Once you have the dependencies, verify the unit tests pass with rake
:
$ bundle exec rake
If those pass, you're ready to start developing the plugin. You can test
the plugin without installing it into your Vagrant environment by just
creating a Vagrantfile
in the top level of this directory (it is gitignored)
and add the following line to your Vagrantfile
Vagrant.require_plugin "vagrant-xhyve"
Use bundler to execute Vagrant:
$ bundle exec vagrant up --provider=xhyve