Vagrant is a powerful tool as it allows us to create “lightweight, reproducible, and portable” Virtual Machines (VM) on the developer machine using provisioning tools like chef and puppet. If you are using chef as the provisioning tool then you would already know that vagrant VM already has chef-client
tool installed along with the version of ruby. Since the vagrant VM already has chef-client
and ruby
it should be straightforward to use any vagrant VM as a workstation for working the Hosted Chef server for provisioning and maintaining VMs in cloud services like AWS and Rackspace. However, I found this not to be the case and I realized that the process of configuring a chef workstation is rather convoluted as both the version of chef-client and its pre-requisite ruby are really old versions of the software that result in all sorts of errors on trying to use the latest chef plug-ins and services. In the end after a lot of trial and error I came to realize that before you can Vagrant VM as chef workstation you need to configure latest version of chef and ruby.
Following are the steps for configuring a vagrant VM as chef workstation. Chances are that you have already using and have both VirtualBox and Vagrant installed on your system. If this is the case, skip the first 2 steps and start with step 3.
VirtualBox is an open source virtualization application that allows you to create Virtual machines on Windows, Linux, Macintosh, and Solaris hosts. To get started install the latest version of VirtualBox. For this download and install the latest version for your OS from the VirtualbBx download page..
Vagrant is a command-line tool that can be used for provisioning and configuring VMs running in VirtualBox. For provisioning VMs it integrates with provisioning tools like chef and puppet. Vagrant also has a concept of Vagrantfile
which uses ruby DSL and contains instructions on how a VM should be configured and provisioned. You can read more about Vagrant on its website which has excellent documentation. You can download and install the latest version of vagrant for your OS from the Vagrant downloads page.
Note: Vagrant also supports VMWare if you purchase a license.
Lets start with a bare bones Vagrantfile. In the chef run-list you would see apt
cookbook which is used to update the Ubuntu package repositories
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
First this we need to do is upgrade ruby to the latest version. For this I am using following cookbooks in my chef run-list
Note: You can download All the Cookbooks used in this post from my cookbooks repo on github
With this run-list Vagrantfile would have following chef settings
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
|
Notice that in the chef.json
block in the above code snippet we configured to install Ruby version 2.0.0-p247
. We also configured to install ruby gems bundler
,rails
, and haml
. We would need these gems in our chef workstation later on when we want to install chef plug-ins for working with AWS and Rackspace.
For upgrading chef you need to install the vagrant-omnibus plug-in. For these execute the following command in you host OS (do not do this in VM)
1
|
|
Once this plug-in is installed you can tell vagrant to upgrade to the latest version of chef by adding following line in the Vagranfile.
1
|
|
If you have followed thus far following is you Vagrantfile
Running vagrant provision
would now upgrade both ruby and chef to the latest version.
In the next post I would discuss the steps for configuring chef workstation and we would provision a Rackspace VM.
Follow me on twitter here