Bootstrapping EC2 Instances with Chef

This is a guest post from 47Line Technologies

In the previous blogs, we introduced Chef and set up the Chef Server, Workstation on EC2 instances. Please refer to the earlier blogs here.
Configuration Management – Introducing Chef
Getting Started with Chef on Amazon AWS

In the blog, we will look into bootstrapping EC2 instances with Chef.

The bootstrapping process involves setting up a Chef Client on a node. Chef Client Communicates with the Chef Server to receive directions for its own configuration. After the client receives the policy, it applies to the node to ensure the client is configured as per the directions of the server.

Knife-ec2 is official Chef Knife plugin for EC2. This plugin gives knife the ability to create, bootstrap, and manage EC2 instances.

Install the knife-ec2 plugin on your workstation

sudo apt-get install gcc g++ make autoconf
sudo apt-get install libxml2 libxml2-dev libxslt1-dev
sudo /opt/chef/embedded/bin/gem install nokogiri -v '1.5.2' -- --with-xml2-lib=/usr/lib/i386-linux-gnu --with-xml2-include=/usr/include/libxml2 --with-xslt-lib=/usr/lib/i386-linux-gnu --with-xslt-include=/usr/include/libxslt
sudo /opt/chef/embedded/bin/gem install knife-ec2 –V

The plugin provides the following sub-commands. Use the — help flag to find specific command options.

knife ec2 server create
knife ec2 server delete
knife ec2 server list

On the workstation, create the required cookbooks and upload to the Chef Server.

cd ~/chef-repo/cookbooks/
#clone the repositories from github
git clone https://github.com/opscode-cookbooks/apt/
git clone https://github.com/socrata-cookbooks/java
git clone https://github.com/opscode-cookbooks/openssl
git clone https://github.com/opscode-cookbooks/tomcat
# upload the cookbooks to the server
knife cookbook upload java apt
knife cookbook upload openssl tomcat

A role is a way to define certain patterns and processes that exist across nodes in an organization as belonging to a single job function. Each role consists of zero (or more) attributes and a run list. Each node can have zero (or more) roles assigned to it.

We will create a “tomcatwebapp” role and then use it bootstrap an EC2 instance.

export EDITOR=$(which vi)
# Create tomcatwebapp role
knife role create tomcatwebapp

the command will open up the vim editor, edit the file contents as below.

{
"name": "tomcatwebapp",
 "description": "Install Java and Tomcat",
"json_class": "Chef::Role", 
"default_attributes": {  }, 
"chef_type": "role",
"run_list": [  "recipe[apt]",  "recipe[tomcat]  ], 
"env_run_lists": {   }, 
"override_attributes": {  }
}

Login to the Chef Server and navigate to the Roles tab, you must see the role we created.
Chef Server Roles tab
Now we are all set to bootstrap an EC2 instance with the tomcatwebapp role with the following command.

knife ec2 server create -I ami-3c39686e -r "role[tomcatwebapp]" -Z ap-southeast-1a --groups Chef-SecGrp -S chef -i chef.pem -f m1.medium -A 'AKIXXXXXXXXXXXXXXXXXX' -K "XXXXXXXXXXXXXXXXXXXXXXX" --region ap-southeast-1 --ssh-user ubuntu

A m1.medium EC2 instance will be launched in the ap-southeast-1a zone with the given group and key name.  The role ‘tomcatwebapp’ will be applied to the instance as well.

When the role ‘tomcatwebapp’ is run against the node, the configuration details of that node are compared against the attributes of the role, and then the contents of the role’s run list are applied to the node’s configuration details. When a chef-client runs, it merges its own attributes and runs lists with those contained within each assigned role.

On the Chef Server, we will be able to list the nodes and see the node with the tomcatwebapp role.
List of the nodes with the tomcatwebapp role
In the next blog, we will introduce creating cookbooks and recipes.

Cloud Academy