vagrant-lxc-ng/README.md

138 lines
4.1 KiB
Markdown
Raw Normal View History

2013-02-25 04:58:04 +00:00
# vagrant-lxc
Highly experimental, soon to come, Linux Containers support for the unreleased
2013-03-03 03:38:48 +00:00
Vagrant 1.1.
Please refer to the [closed issues](https://github.com/fgrehm/vagrant-lxc/issues?labels=&milestone=&page=1&state=closed)
to find out whats currently supported.
## WARNING
Please keep in mind that this is not even alpha software and things might go wrong.
## Dependencies
2013-03-03 03:44:41 +00:00
Just LXC and `bsdtar` as of now, which on Ubuntu 12.10 means:
2013-03-03 03:38:48 +00:00
```
2013-03-03 03:44:41 +00:00
sudo apt-get install lxc bsdtar
2013-03-03 03:38:48 +00:00
```
## Current limitations that I can remember
* Ruby >= 1.9.3 only, patches for 1.8.7 are welcome
* There is no support for setting a static IP. I'm using
2013-03-03 03:44:41 +00:00
[LXC's built in dns server](lib/vagrant-lxc/container.rb#L100) to determine
2013-03-03 03:38:48 +00:00
containers' IPs
2013-03-03 03:44:41 +00:00
* No provisioning [yet](https://github.com/fgrehm/vagrant-lxc/issues/16)
2013-03-03 03:38:48 +00:00
* `sudo`s
2013-03-03 23:42:29 +00:00
* only ubuntu cloudimg supported, I'm still [figuring out what should go on the .box](https://github.com/fgrehm/vagrant-lxc/issues/4)
* "[works](https://github.com/fgrehm/vagrant-lxc/issues/20) on [my machine](https://github.com/fgrehm/vagrant-lxc/issues/7)" (TM)
2013-03-03 03:38:48 +00:00
* plus a bunch of other [core features](https://github.com/fgrehm/vagrant-lxc/issues?labels=core&milestone=&page=1&state=open)
## Usage
For now you'll need to install the gem from sources:
```
2013-03-03 03:44:41 +00:00
git clone git://github.com/fgrehm/vagrant-lxc.git --recurse
2013-03-03 03:38:48 +00:00
cd vagrant-lxc
bundle install
bundle exec rake install
bundle exec rake boxes:build:ubuntu-cloud
2013-03-03 03:44:41 +00:00
vagrant-lxc box add ubuntu-cloud boxes/output/ubuntu-cloud.box
2013-03-03 03:38:48 +00:00
```
Since Vagrant 1.1 has not been released yet and to avoid messing up with you
current Vagrant installation, I've vendored Vagrant's sources from the master
and made it available from [`vagrant-lxc`](bin/vagrant-lxc). So after `vagrant-lxc`
gets installed, create a `Vagrantfile` like the one below and run `vagrant-lxc up --provider=lxc`:
```ruby
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu-cloud"
config.vm.provider :lxc do |lxc|
2013-03-03 23:42:29 +00:00
# Same as 'customize ["modifyvm", :id, "--memory", "1024"]' for VirtualBox
lxc.start_opts << 'lxc.cgroup.memory.limit_in_bytes=400M'
# Limits swap size
lxc.start_opts << 'lxc.cgroup.memory.memsw.limit_in_bytes=500M'
2013-03-03 03:38:48 +00:00
end
end
```
If you don't trust me and believe that it will mess up with your current Vagrant
2013-03-03 03:44:41 +00:00
installation and / or are afraid that something might go wrong with your machine,
fire up the [same Vagrant VirtualBox machine I'm using for development](#using-virtualbox-for-development)
2013-03-03 03:38:48 +00:00
to try things out and do the same as above. That might also get you up and running
if you are working on a mac ;)
## Development
If you know what you'll be doing and want to develop from your physical machine,
just sing that same old song:
```
git clone git://github.com/fgrehm/vagrant-lxc.git --recurse
cd vagrant-lxc
bundle install
bundle exec rake boxes:build:ubuntu-cloud
bundle exec rake # to run all specs
```
### Using VirtualBox for development
I've also prepared a Vagrant 1.0 VirtualBox machine for development that you can
get up and running with the [`setup-vagrant-dev-box`](setup-vagrant-dev-box)
script. Feel free to use it :)
```
cp Vagrantfile.dev Vagrantfile
./setup-vagrant-dev-box
vagrant ssh
```
*NOTE: `setup-vagrant-dev-box` takes around 10 minutes on a 15mb connection
2013-03-03 03:44:41 +00:00
after the [base vagrant box](Vagrantfile.dev#L5) and ubuntu [lxc cloud img](setup-vagrant-dev-box#L15-L16)
2013-03-03 03:38:48 +00:00
have been downloaded*
## Protip
If you want to find out more about what's going on under the hood, prepend `VAGRANT_LOG=debug`
to your `vagrant-lxc` commands like:
```
VAGRANT_LOG=debug vagrant-lxc up
```
2013-03-04 01:23:26 +00:00
## Help!
### I've accidentaly ran `vagrant-lxc` on a Vagrant 1.0 project and I can't use it anymore
2013-03-03 03:38:48 +00:00
That happened to me before so here's how to recover:
```
rm -rf .vagrant
mv .vagrant.v1* .vagrant
```
2013-02-25 23:09:32 +00:00
2013-03-04 01:23:26 +00:00
### The container does not stop from `vagrant halt`
There is some hidden bug which I wasn't able to reproduce properly, if that
happens to you, just run `lxc-shutdown -n container_name` and try again.
2013-02-25 23:09:32 +00:00
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request