Set of Vagrant files used for deploying a single or multi-node Ganeti cluster. The original goal of this was to provide a testing environment for the Ganeti Web Manager team at the OSUOSL. It can also be used as a Ganeti training platform using a tutorial I have written up. (TODO).
Vagrant will setup up to three Ganeti nodes with the basics to install
Ganeti, Ganeti Instance
Image, and Ganeti Web
Manager. You can deploy any
number of nodes for the uses you want. Ganeti will already be initialized on
node1
.
This was originally used for Hands on Virtualization with Ganeti at OSCON 2011 and has been adapted for use with Vagrant. The intention of this is for instructional and testing purposes only.
- VirtualBox >=4.1.x
- vagrant >=1.2
-
Install VirtualBox by going to their download page.
-
Install Vagrant by going to their following their installation instructions
-
Initialize submodule(s)
./update
The Vagrantfile is setup to where you can deploy one, two, or three nodes
depending on your use case. Node1
will have Ganeti already initialized while
the other two will only have Ganeti installed and primed.
For more information on how to use Vagrant, please check out their site.
vagrant up node1
vagrant ssh node1
NOTE: Root password is 'vagrant'.
vagrant up node2
vagrant ssh node1
gnt-node add -s 33.33.34.12 node2
NOTE: Root password is 'vagrant'.
vagrant up node3
vagrant ssh node1
gnt-node add -s 33.33.34.13 node3
Add the following to your /etc/hosts
files for easier access locally.
33.33.33.10 ganeti.example.org
33.33.33.11 node1.example.org
33.33.33.12 node2.example.org
33.33.33.13 node3.example.org
All the nodes are using hostonly
networking with the following IP's:
- ganeti.example.org (cluster IP) = 33.33.33.10
- node1.example.org = 33.33.33.11
- node2.example.org = 33.33.33.12
- node3.example.org = 33.33.33.13
Additionally, I have setup several VM DNS names in the /etc/hosts
of each
node that you can use:
- instance1.example.org
- instance2.example.org
- instance3.example.org
- instance4.example.org
The RAPI user setup for use on the cluster uses the following credentials.
- user: vagrant
- pass: vagrant
This repo has been setup to deal with a variety of Ganeti versions for testing. Currently it only supports 2.4.x, 2.5.x, 2.6.x and any git tagged releases. Currently 2.7.x is not supported but will be soon. To switch between the versions do the following:
- edit
modules/ganeti_tutorial/node{1-3}.pp
- if using git, change
git
totrue
- change
ganeti_version
to desired version - redeploy the vm(s) (destroy, up)
By default we use Ubuntu 12.04 for our node OS but we do have support for the following operating systems. Just run the vagrant commands from inside the appropriate folder.
- Ubuntu 12.04 (ubuntu-12.04)
- Ubuntu 12.10 (ubuntu-12.10)
- Ubuntu 13.04 (ubuntu-13.04) (work in progress)
- Debian 6 (debian-6)
- Debian 7 (debian-7) (pre-release)
- CentOS 6 (centos-6)
NOTE: This is currently broken. Please avoid trying this for now
This repo also supports automatically deploying GWM inside of the node1
instance. You can achieve this by changing the puppet manifest for node1 to
point to node1-gwm.pp
instead.
NOTE: This is still not quite working right. I hope to have this fixed with the 0.9 release of GWM
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.
vi: set tw=80 ft=markdown :