This is a Vagrant 1.1+ plugin that adds a Rackspace Cloud provider to Vagrant, allowing Vagrant to control and provision machines within Rackspace cloud.
Note: This plugin requires Vagrant 1.1+.
- Boot Rackspace Cloud instances.
- SSH into the instances.
- Provision the instances with any built-in Vagrant provisioner.
- Minimal synced folder support via
rsync
.
Install using standard Vagrant 1.1+ plugin installation methods. After
installing, vagrant up
and specify the rackspace
provider. An example is
shown below.
$ vagrant plugin install vagrant-rackspace
...
$ vagrant up --provider=rackspace
...
Of course prior to doing this, you'll need to obtain an Rackspace-compatible box file for Vagrant.
The default configuration of the RHEL family of Linux distributions requires a tty in order to run sudo. Vagrant does not connect with a tty by default, so you may experience the error:
sudo: sorry, you must have a tty to run sudo
The best way to deal with this error is to upgrade to Vagrant 1.4 or later, and enable:
config.ssh.pty = true
After installing the plugin (instructions above), the quickest way to get
started is to actually use a dummy Rackspace box and specify all the details
manually within a config.vm.provider
block. So first, add the dummy
box using any name you want:
$ vagrant box add dummy https://github.com/mitchellh/vagrant-rackspace/raw/master/dummy.box
...
And then make a Vagrantfile that looks like the following, filling in your information where necessary.
Vagrant.configure("2") do |config|
config.vm.box = "dummy"
config.vm.provider :rackspace do |rs|
rs.username = "YOUR USERNAME"
rs.api_key = "YOUR API KEY"
rs.flavor = /1 GB Performance/
rs.image = /Ubuntu/
rs.metadata = {"key" => "value"} # optional
end
end
And then run vagrant up --provider=rackspace
.
This will start an Ubuntu 12.04 instance in the DFW datacenter region within your account. And assuming your SSH information was filled in properly within your Vagrantfile, SSH and provisioning will work as well.
Note that normally a lot of this boilerplate is encoded within the box file, but the box file used for the quick start, the "dummy" box, has no preconfigured defaults.
To determine what flavors and images are avliable in your region refer to the Custom Commands section.
If you are using RackConnect with vagrant, you will need to add the following line to the config.vm.provider
section to prevent timeouts.
rs.rackconnect = true
The plugin includes several Rackspace-specific vagrant commands. You can get the
list of available commands with vagrant rackspace -h
.
For example to list all available images for a machine you can use:
$ vagrant rackspace images
In a multi-machine Vagrantfile you can also query for a single machine:
$ vagrant rackspace images <name>
These commands will connect to Rackspace using the settings associated with the machine, and query the region to get the list of available flavors, images, keypairs, networks and servers.
Every provider in Vagrant must introduce a custom box format. This
provider introduces rackspace
boxes. You can view an example box in
the example_box/ directory.
That directory also contains instructions on how to build a box.
The box format is basically just the required metadata.json
file
along with a Vagrantfile
that does default settings for the
provider-specific configuration for this provider.
This provider exposes quite a few provider-specific configuration options:
api_key
- The API key for accessing Rackspace.flavor
- The server flavor to boot. This can be a string matching the exact ID or name of the server, or this can be a regular expression to partially match some server flavor. Flavors are listed here.image
- The server image to boot. This can be a string matching the exact ID or name of the image, or this can be a regular expression to partially match some image.rackspace_region
- The region to hit. By default this is :dfw. Valid options are: :dfw, :ord, :lon, :iad, :syd. Users should preference using this setting overrackspace_compute_url
setting.rackspace_compute_url
- The compute_url to hit. This is good for custom endpoints.rackspace_auth_url
- The endpoint to authentication against. By default, vagrant will use the global rackspace authentication endpoint for all regions with the exception of :lon. IF :lon region is specified vagrant will authenticate against the UK authentication endpoint.public_key_path
- The path to a public key to initialize with the remote server. This should be the matching pair for the private key configured withconfig.ssh.private_key_path
on Vagrant.key_name
- If a public key has been uploaded to the account already, the uploaded key can be used to initialize the remote server by providing its name. The uploaded public key should be the matching pair for the private key configured withconfig.ssh.private_key_path
on Vagrant.server_name
- The name of the server within RackSpace Cloud. This defaults to the name of the Vagrant machine (viaconfig.vm.define
), but can be overridden with this.username
- The username with which to access Rackspace.disk_config
- Disk Configuration 'AUTO' or 'MANUAL'metadata
- A set of key pair values that will be passed to the instance for configuration.
These can be set like typical provider-specific configuration:
Vagrant.configure("2") do |config|
# ... other stuff
config.vm.provider :rackspace do |rs|
rs.username = "mitchellh"
rs.api_key = "foobarbaz"
end
end
Public networking with DHCP IP assignment is supported and is the default if unspecified.
Vagrant.configure("2") do |config|
config.vm.network "public_network"
end
Private networking with DHCP assignment is supported. If you are using ServiceNet to connect to your instances, you will need to select this configuration. Assignment of static IPs is not currently supported.
Vagrant.configure("2") do |config|
config.vm.network "private_network", type: "dhcp"
end
You may attach a VM to an isolated Cloud Network (or Networks) using the network
configuration option. Here's an example which adds two Cloud Networks and disables ServiceNet with the :attach => false
option:
config.vm.provider :rackspace do |rs|
rs.username = "mitchellh"
rs.api_key = "foobarbaz"
rs.network '443aff42-be57-effb-ad30-c097c1e4503f'
rs.network '5e738e11-def2-4a75-ad1e-05bbe3b49efe'
rs.network :service_net, :attached => false
end
There is minimal support for synced folders. Upon vagrant up
,
vagrant reload
, and vagrant provision
, the Rackspace provider will use
rsync
(if available) to uni-directionally sync the folder to
the remote machine over SSH.
This is good enough for all built-in Vagrant provisioners (shell, chef, and puppet) to work!
To work on the vagrant-rackspace
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)
that uses it, and uses bundler to execute Vagrant:
$ bundle exec vagrant up --provider=rackspace