DevOps

Intro to Chef

Chef is an incredible tool, but despite its beginnings in 2008/2009 it still lacks an effective quick start, or even an official “hello world” – so it takes too long to really get started as you desperately search for tutorials/examples/use cases. The existing quick starts or tutorials take too long and fail to explain the scope or what Chef is doing. This is really unfortunate because the world could be a better place if more people used Chef (or even Puppet) and we didn’t have to guess how to configure a server for various applications.

Official Chef Explanation

Officially, Chef is a “configuration management tool” where you write “recipes”. It’s written in Ruby and you’ll need at least version 1.8.6. Here’s the official Chef Quick Start guide but I think it fails at succinctly presenting the scope of Chef or even how to use it, hence this document.

Simpler Chef Explanation

Put simpler, Chef is a Ruby DSL (domain specific language) for configuring GNU/Linux (or BSD) machines (Windows is not well supported), it has 2 flavors, “Chef Server” and “Chef Solo”, in this document I’m talking about Chef SOLO because it’s easier to get started with – and works well as a complement to Rails apps.

Simplest Chef Explanation and actual working example

Put simpler yet: Chef is a ruby script that uses “recipes” (a recipe is a Ruby file that uses the Chef DSL) to install software and run scripts on GNU/Linux servers. You can run Chef over and over again safely because most recipes know not to, for example, reinstall something that already exists (sometimes you have to code this functionality of not installing something that already exists, but most of the DSLs do it already).

Think of Chef as having 4 components:
install a binary/executable (chef-solo), installable via Ruby Gems

sudo /usr/bin/gem install chef ohai --no-rdoc --no-ri
/var/lib/gems/1.8/bin/chef-solo

create one or more ruby files that they call “recipes” in a structure like this

~/my_cookbooks/RECIPE_NAME/recipes/default.rb

Vim install recipe example
if we want a recipe for installing vim, here’s one quick and simple way to do it:

~/my_cookbooks/vim/recipes/default.rb
package('vim')

Just duplicate the directory structure I have listed above, and in the default.rb file, you only need 1 line. that “package” method knows which package management software to use depending on what OS is running and then leverages it.

Create MySQL DB recipe example

There are a lot of methods available for recipes. Take “bash” for example. Pass the “bash” method a block, and inside the block you can use methods like “code” (which executes a string of bash commands) and “user” which specifies which OS user to run the commands as.

~/my_cookbooks/create_mysql_db/recipes/default.rb

bash “really awesome way to create a mysql database from chef using the bash method” do

# dont if the db already exists

not_if('/usr/bin/mysql -uroot -pmiller_highlife_lol_jk -e'show databases' | grep #{node[:create_mysql_db][:db_name]}', :user => 'evan')

  # run as the evan user
  user 'evan'

  # a heredoc of the code to execute, note the node hash is created from the JSON file
  code <<-HEY_BRO_EOM
  mysql -uroot -ppmiller_highlife_lol_jk -e 'create database #{node[:create_mysql_db][:db_name]}'
  HEY_BRO_EOM

end

JSON file with array of recipes that you’ll point the binary at

~/my_cookbooks/roles/ottobib.json
{
  'name': 'ottobib',
  'run_list': [
    'create_mysql_db',
    'vim',
  ],
</strong>  'create_mysql_db': {
    'db_name': 'ottobib_production'
  }
}

Finally, a ruby file with more configuration options

~/my_cookbooks/chefsoloconfig.rb
file_cache_path  '/tmp/chef-solo'
cookbook_path    '/home/evan/my_cookbooks'
log_level        :info
log_location     STDOUT
ssl_verify_mode  :verify_none

NOW you can run it over and over again and your system will end up with Vim and a ottobib_production database. If you want to get CRAZY: add a recipe that checks out the latest copy of your application source code and then setup a cron job to execute your chef script every minute!

Here’s what your /home/evan/my_cookbooks dir should look like:

|-chefsoloconfig.rb
|-roles
  -ottobib.json
|-vim
  |-recipes
    -default.rb
|-create_mysql_db
  |-recipes
    -default.rb

THE ACTUAL COMMAND TO RUN CHEF!

 sudo /var/lib/gems/1.8/bin/chef-solo -c /home/evan/my_cookbooks/chefsoloconfig.rb -j /home/evan/my_cookbooks/roles/ottobib.json -ldebug

Reference: Intro to Chef from our JCG partner Evan Conkle at the Evan Conkle’s blog blog.

Evan Conkle

Evan is a Senior Enterprise Application Developer in the computer gaming industry. From application scaling to Hadoop, he masters complex data problems. He is also the founder of HadoopLogic.com.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Sharique
Sharique
5 years ago

“Windows is not well supported” Would not be the right statement. I agree that there are much more resources and references available for linux platform however, Chef supports Windows eco system rather nicely. I automated a complete dot net shop for one of my projects (comprising of Windows Servers, IIS, .Net framework and PowerShell) without many issues. Of course PowerShell helps you wherever you can’t find a default chef resource for your specific needs.

Back to top button