DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Please enter at least three characters to search
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Zones

Culture and Methodologies Agile Career Development Methodologies Team Management
Data Engineering AI/ML Big Data Data Databases IoT
Software Design and Architecture Cloud Architecture Containers Integration Microservices Performance Security
Coding Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks
Culture and Methodologies
Agile Career Development Methodologies Team Management
Data Engineering
AI/ML Big Data Data Databases IoT
Software Design and Architecture
Cloud Architecture Containers Integration Microservices Performance Security
Coding
Frameworks Java JavaScript Languages Tools
Testing, Deployment, and Maintenance
Deployment DevOps and CI/CD Maintenance Monitoring and Observability Testing, Tools, and Frameworks

Modernize your data layer. Learn how to design cloud-native database architectures to meet the evolving demands of AI and GenAI workkloads.

Secure your stack and shape the future! Help dev teams across the globe navigate their software supply chain security challenges.

Releasing software shouldn't be stressful or risky. Learn how to leverage progressive delivery techniques to ensure safer deployments.

Avoid machine learning mistakes and boost model performance! Discover key ML patterns, anti-patterns, data strategies, and more.

  1. DZone
  2. Refcards
  3. Chef An Open Source Tool for Scalable Cloud and Data Center Automation
refcard cover
Refcard #149

Chef An Open Source Tool for Scalable Cloud and Data Center Automation

An Open Source Tool for Scalable Cloud and Data Center Automation

Get the ultimate cheat sheet for a new breed of open-source infrastructure. You’ll learn how to create a Chef cookbook, and you’ll learn about Run Lists, “Knife,” and the 0hai Ruby library.

Download Refcard
Free PDF for Easy Reference
refcard cover

Written By

author avatar Jeffrey Hulten
Principal Consultant, Automated Labs, LLC
Table of Contents
► Introduction ► Components of Chef ► Ohai ► Run List ► Cookbooks ► Resources ► Writing a Cookbook ► ROLES ► Advanced Chef
Section 1

Introduction

By Jeffrey Hulten

Systems administrators have always tried to automate repetitive tasks. Some use BASH and Perl with SSH to loop through a list of servers one at a time. This has some limitations and doesn’t scale particularly well, especially in a medium to large datacenter or cloud deployment.

So what is a forward-thinking system administrator to do? Let’s take a look at a tool called Chef.

What is Chef?

Chef (http://www.opscode.com/chef) is one of a new breed of open-source “infrastructure as code” tools to manage infrastructures of any size. It provides administrators with the capability to define “cookbooks” that can be applied repeatedly and consistently to server and application configurations.

Unlike some other “infrastructure as code” tools, Chef was designed from the beginning with systems integration in mind. This allows Chef to gather the information a server needs to configure itself. For instance, if you were to configure Apache https as a proxy for a farm of Tomcat instances, your configuration could ask the Chef server for a list of all the installations of Tomcat, their hostnames, and port number.

Common Terminology

The following are some Chef terms that will be helpful to know before we start.

Node: A managed machine. When the Chef client runs, it executes the configuration for a node.

Client: An authorized user of the Chef API. In most cases, every machine you manage will be represented by: a) a client for logging into the API and b) a node configuration to apply. Administrators and the web interface are also clients.

Cookbook: A collection of attributes, recipes, custom resources, and definitions to configure a certain application or service. For instance you will find shared cookbooks available on the web for NTP, Apache https, MySQL, nginx, and other common services.

Recipe: A list of resources that should be applied to a node. Recipes are written in normal Ruby extended by the Chef resource domain-specific language. This gives you the power of anything you can do in Ruby (conditionals, using gems, etc.) while not having to be verbose in managing the resources that make up your configuration.

Three Ways to Slice It

There is more than one way to bring Chef to your environment. You can use a local set of cookbooks with the Chef client (Chef Solo), a central set of cookbooks on a local Chef server, or a central set of cookbooks on the Hosted Chef

Chef Solo

If you are thinking this is too complicated, check out chef-solo (http:// wiki.opscode.com/display/chef/Chef+Solo). It allows you to pass a set of cookbooks (either in a local directory or in a tar ball on a server) and a JSON file to configure your system. While this is the simplest thing that could possibly work, you give up the ability to search for other nodes or look up items in data bags to configure your nodes.

Local Chef Server

Setting up your own Chef server has been streamlined by a cookbook provided by Opscode. The cookbook can set up the Chef server on Ubuntu 8.10+, Debian 6, and CentOS 5.

Information about bootstrapping your own Chef server can be found at http:// wiki.opscode.com/display/chef/Bootstrap+Chef+RubyGems+Installation If you need to setup your Chef server on a different platform, check out http:// wiki.opscode.com/display/chef/Manual+Chef+Server+Configuration.

Hosted Chef

Hosted Chef is a service provided by Opscode, the makers of Chef, which frees you from configuring your own Chef server. You can find out more at http://www.opscode.com/hosted-chef/.

Section 2

Components of Chef

When using Chef as a client-server application, either with a local Chef server or the Hosted Chef, there are a few moving parts to keep track of.

Knife

Knife is the tool you will use as a system administrator to interact with the server most often, especially taking cookbooks and other custom configurations and loading them into the server for distribution to clients. You can also bootstrap new servers with the Chef client components, start new instances on the major cloud providers (AWS, Rackspace, SliceHost, and Terremark), and search for nodes or other data. Running knife --help will give you a list of supported commands.

Chef Client

The Chef client runs on the servers you are managing. It gathers information about itself using Ohai, synchronizes the cookbooks it needs from the Chef server, compiles the collection of resources that make up the configuration, and then “converges” the resources it has compiled with the state of the current machine

Web-UI

Chef includes a web interface that lets you browse cookbooks and browse and edit nodes, roles, and clients.

Server/API

The Chef server sits at the center of the system. The Chef server exposes a RESTful API, which is used by the other components in the system. Your managed nodes, knife, and the web interface are all clients of the API. While you will probably not need to access the API directly, it is good to know that all of your data and more advanced automation are available using the API.

Section 3

Ohai

Knowing the current state of your machine is a big part of any configuration management system. Ohai is a Ruby library that gathers information about your system and formats it as JSON for use by the Chef client and for storage on the Chef server. To see for yourself, type ohai at the command prompt. This information is exposed in your recipes through the node object. For instance if a particular piece of a recipe should only be called when the node is on a specific network you can use the ipaddress property as follows:

​x
1
​
2
if node[:ipaddress] =~ /^10\.10\./
3
# do something
4
end
5
​

This would check to see if the IP address of the node was a part of the 10.10.0.0 network before attempting the steps inside the block.

Ohai also allows you to write custom plug-ins for your specific environment or equipment. See: http://wiki.opscode.com/display/chef/Writing+Ohai+Plugins

Section 4

Run List

Each node has a run list, which provides the recipes and roles for a node in the order they should be applied. This is a key difference from some other configuration management tools, which attempt to have you define the relationship between every resource. While both approaches have their strengths and weaknesses, the ordered run list is easiest for most people to understand.

As of 0.10, the knife command produces cleaner output for human consumption by default. You can use the knife command to get information about a node, including its run list, as follows:

11
1
​
2
$ knife node show s1.mydomain.com
3
Node Name: s1.mydomain.com
4
Environment:        _default
5
FQDN: s1.mydomain.com
6
IP: 1.2.3.4
7
Run List: role[common]
8
Roles: common
9
Recipes: chef-client, users::sysadmins, sudo
10
Platform: ubuntu 10.10
11
​

As you can see, the server in question had a run list that includes one role (common) that expands to the recipes chef-client, users::sysadmins, and sudo. If we want to add a new role to the node, we can use knife again:

6
1
​
2
$ knife node run_list add s1.mydomain.com “role[profit]”
3
run_list:
4
role[common]
5
role[profit]
6
​

The run list is immediately modified and will be applied to the node the next time chef-client runs.

Section 5

Cookbooks

Anatomy of a Cookbook

When you run knife cookbook create [NAME], a new directory structure is created with some sane defaults for your new cookbook. Most of the directories will be addressed in later sections, but there are two files created in the top-level directory for your cookbook that are important.

metadata.rb

The metadata.rb file is converted to JSON when the cookbook is uploaded to the Chef server. It provides critical information about the name, version, dependencies, and other properties of the cookbook.

12
1
​
2
name “myservice”
3
maintainer “My Name”
4
maintainer_email “me@sample.com”
5
license “Apache v2.0”
6
description “Installs/Configures myservice”
7
long_description IO.read(File.join(File.dirname(__FILE__), ‘
8
README.rdoc’))
9
version “0.0.2”
10
depends “ntpd”
11
depends “java”, “~> 1.1”
12
​

Much of the information in the metadata.rb file is for human consumption and is displayed in the Chef web interface. The main pieces that influence thechef clientt behavior as of 0.10 are the version and depends statements.

The version field is important with the introduction of environments in 0.10. It allows you to pin an environment to a specific version of a cookbook. This way your production environment can remain on a tested version of your configuration while you are improving your development version.

Versions have to be managed by hand right now. When you use knife to upload a cookbook to the Chef server it will replace any files or recipes it finds that were uploaded with the same version number. You can prevent yourself and others from overwriting a given version of a cookbook by passing knife the --freeze flag.

The depends property specifies what other cookbooks are required on the client for this cookbook to work. The second depends clause in the example includes a version number. This is optional but will allow you to keep major changes to your cookbooks from breaking others if you manage your version numbers well.

NOTE: Cookbook versions are supported as of Chef 0.10

README.rdoc

If you look again at the long_description property of the metadata. rb file you will see some Ruby code reading a file called README.rdoc. The README.rdoc file is the place for your documentation on how to use your cookbook and is especially important if you are sharing your cookbooks with others, either inside your company or on the Internet. While RDoc is the default for the README, Markdown is supported and will probably become the default in a future release.

Borrowing and Sharing Cookbooks

One of the greatest assets of any open-source project is the way the community shares knowledge. Chef helps you take advantage of other people’s work and share your work with the community, using the http://community.opscode.com/ site and a set of knife commands.

14
1
​
2
$ knife cookbook site --help
3
Available cookbook site subcommands: (for details, knife SUB-COMMAND
4
--help)
5
​
6
** COOKBOOK SITE COMMANDS **
7
knife cookbook site install COOKBOOK [VERSION] (options)
8
knife cookbook site share COOKBOOK CATEGORY (options)
9
knife cookbook site search QUERY (options)
10
knife cookbook site show COOKBOOK [VERSION] (options)
11
knife cookbook site unshare COOKBOOK
12
knife cookbook site list (options)
13
knife cookbook site download COOKBOOK [VERSION] (options)
14
​

As you can see, knife supports downloading cookbooks and sharing your cookbooks with others. The knife commands use the Opscode community site at http://community.opscode.com/ to store, rate, and search shared cookbooks.

Much of the community uses Git as version control for their Chef repository, so knife provides the knife cookbook site install command that downloads the cookbook and places it in a vendor branch within your Git repository and then merges it into the master branch. This allows local modifications to persist even if you upgrade the underlying cookbook.

For those who use Subversion or other version control system, you can use the knife cookbook site download command to bring down atar balll that you can unpack where you wish.Likewise you may spend hours building a cookbook and want to share it with the community. Please do! You can either make a tgz file of your cookbooks directory or use the knife cookbook site share command to upload it to the community site.

Hot Tip

When you develop an interesting cookbook, consider sharing it with the community. Also consider placing the source on GitHub or a similar public service so that others can contribute.

File Specificity

http://wiki.opscode.com/display/chef/File+Distribution

Chef provides a way to place different versions of files and templates to specific hosts or platforms. The default/ folder under files/ and templates/ is created for you if you if you used `knife` to create your cookbook. You can override a file in this default directory with a version that is host specific, OS and version specific, or just OS specific.

The utility versus the complexity of the file specificity system is in discussion in the community at the moment. There are clearer ways to specify template and file resources (like in the resource itself), so I caution users to not make heavy use of this functionality. It is more likely to confuse those that come after you. Just remember to place your files and templates in the default/ directory.

Section 6

Resources

http://wiki.opscode.com/display/chef/Resources

When you start composing your configuration, you will declare resources, which are essentially Ruby objects with the code behind them to configure your system. Behind each resource are one or more providers that tell Chef how to execute the actions you require against a certain type of system. For instance, the package resource has providers for yum, apt, gems, and more.

Log

The Log resource is the simplest resource there is. All it does is print a logging message at the level you provide (defaulting to INFO).

log “This is a message from chef”

This will generate the following message amidst the rest of the output when chef-client runs.

INFO: This is a message from chef

You can specify the level you want the message to be logged at with the level parameter.

5
1
​
2
log “Bad stuff happened” do
3
level :error
4
end
5
​

Packages

Chef includes providers for most major package management systems. These multiple providers allow the single package resource to be used on most major UNIX-based operating systems. Since the default action for a package is “install”, the simplest use is as follows:

3
1
​
2
package “autoconf”
3
​

This is equivalent to:

6
1
​
2
package “autoconf” do
3
action :install
4
end
5
​
6
​

You can even specify the version you want and the provider that should be used (such as YUruby gemsems, etc.):

7
1
​
2
package “cucumber” do
3
version “0.9.4”
4
provider Chef::Provider::Package::Rubygems
5
action :install
6
end
7
​

There are also shortcut resources that force a particular package provider to be used. For instance, the Ruby gem example above is the same as saying:

6
1
​
2
gem_package “cucumber” do
3
  version “0.9.4”
4
  action :install
5
end
6
​

As always, you have the full power of Ruby to handle edge cases, such as the package name to use when installing Apachttpstpd.

12
1
​
2
package “apache2” do
3
    case node[‘platform’]
4
  whecentstosred hathat”,”fedorasussuse”
5
    package_namhttpstpd”
6
  when “debian”,”ubuntu”
7
    package_name “apache2”
8
  end
9
  action :install
10
end
11
​
12
​

In the example above, we use a Ruby case statement to look at the node object, which represents the system we are currently configuring. The node object includes all the data discovered by the Ohai application. Ohai sets the platform element to the name of the distribution.

Files, Directories, and Templates

Configuration on Linux and *NIX systems often starts with managing files and directories. Chef provides the file, remote_file, and cookbook_file resources to manage static files and a directory resource for managing directories.

Directory

The directory resource lets us create, remove, and manage the permissions on directories. If you need a temporary directory, you can create one as follows:

5
1
​
2
directory “/tmp/mydirectory” do
3
  action :create
4
end
5
​

The owner and group of the directory will be the defaults for the user running the Chef client, usually root. The create action is the default, so that could be rewritten as:

3
1
​
2
directory “/tmp/mydirectory”
3
​

Hot Tip

Using the defaults can make your cookbooks more concise, but make sure they aren’t more confusing for your future self and your team.

In defining your resources, you have the full power of Ruby available to you. For instance, this allows you to loop through entries in an array to build a set of directories.

11
1
​
2
[“site1”, “site2”, “site3”].each do |dir|
3
directory “/srv/vhosts/#{dir}” do
4
mode 0775
5
owner “root”
6
group “root”
7
action :create
8
recursive true
9
end
10
end
11
​

In the example above, three directories will be created under /srv/vhosts. In this case we used the recursive true property of the directories to ensure that the base directories (/srv and /srv/vhosts) are created if they do not exist.

File

The file resource allows you to manage the permissions and ownership of files on the node, with the option to pass content from inside your recipe. To retrieve a file from a URL or the cookbook, use the remote_file or cookbook_file resources respectively.

The parameters for a file are the same as a directory with a couple of exceptions. Files have a touch action that updates the modified time and last accessed time of the file, they don’t have a recursive attribute so the target directory must exist, and they have a backup attribute that defines how many backup versions of the file should be kept if the contents change.

NOTE: Backups are saved to the directory specified by file_backup_path in your client.rb file. This defaults to /var/chef/backup.

9
1
​
2
file “/etc/nologin” do
3
backups false
4
owner “root”
5
group “root”
6
mode “0755”
7
action :create
8
end
9
​

The resource above creates a file called /etc/banner with the content set to the string provided. It will not back up the file if it changes.

Remote File

The remote_file resource is identical to the file resource, except instead of having a content parameter, remote_file has a source parameter that is the URL of the file to transfer. It also has an optional checksum parameter that, if the managed file’s checksum matches, will prevent Chef from downloading the file an extra time. Chef uses SHA-256 for its checksums, but only the first 5-10 characters of the hash are usually needed to ensure consistency.

Also, the actions on a remote_file are limited to create and create_if_ missing. To delete a file created by remote_file, change it to a standard file resource.

Cookbook File

A cookbook_file resource is largely the same as a remote_file resource, with the exception that files will be retrieved from the files/ directory structure (respecting File Specificity) of the cookbook. An additional cookbook attribute is available to fetch files from cookbooks other than the one you are currently running.

Hot Tip

As a rule, do not store large binaries in Chef. It can handle it, but the side effects (larger database size, slower repository checkouts) make it less desirable than many alternatives such as a package repository,

Templates

http://wiki.opscode.com/display/chef/Templates

Chef suppotemptingting text based configuration files using ERB. In its simplest form, Ruby code is wrapped in special brackets.

3
1
​
2
<% x = “This is Ruby code” %>
3
​

Things that are not wrapped in the tags are not parsed as Ruby code. A similar tag is used to put a value into the resulting file.

3
1
​
2
The value of x is: <%= x %>
3
​

Notice the equals sign after the opening tag. ERB will parse the statement included in that tag and replace the tag with the return value.

By combining these elements with regular Ruby conditionals and flow control, we can create templates for even complex configuration. Let us stick with the simple case for now, a resolv.conf file used by *NIX systems to define their DNS servers.

7
1
​
2
domain <%= node[‘domain’] %>
3
search <%= node[‘domain’] %>
4
<% @nameservers.each do |server_ip| -%>
5
nameserver <%= server_ip %>
6
<% end -%>
7
​

You can see that the domain and search lines are adding the value returned by node[‘domain’] to the end of their lines. This shows the first way Chef maketemptingng a little easier. The node object with its extensivhash mapap of attributes and Ohai values is injected into your template’s namespace.

The second piece is a loop over each item in an array called @nameservers. The template resource has a variables attribute that you can pass other data to for use in your templates without inserting it into the node object itself.

You may have noticed that the each do and end statements have an extra hyphen attached to the end tag. This prevents the newline character outside the tag from being printed, keeping you from having extra blank lines in your template.

Lets take a quick look at how to declare the template resource for the file above. Remember that templates respect File Specificity, so we will need to put it in template/default/resolv.conf.erb.

7
1
​
2
template “/etc/resolv.conf” do
3
source “resolv.conf.erb”
4
mode “0644”
5
variables( :nameservers => [‘8.8.8.8’, ‘8.8.4.4’] )
6
end
7
​

We set the source and mode, just like a cookbook_file resource. Then we add a variables attribute that assigns an array to the symbol name servers. This array will be made available, as you saw in our template, as the variable @ nameservers.

For more on ERB, see the documentation at http://www.ruby-doc.org/stdlib/libdoc/erb/rdoc/.

Services

Once the package is installed and you have put your configurations (either as files or templates) in place, it is time to manage the services you intend to provide. Again, Chef providers are available for most of the major service management schemes.

5
1
​
2
service “ntpd” do
3
  action [:start, :enable]
4
end
5
​

This will start the service (if it is not running) and make sure it will restart when the node is rebooted.

If it appears that Chef is attempting to start your service every time it runs, check the resources wiki page for the `supports`, `pattern`, and `status_ command` attributes.

Execute

So far we can manage files, install packages, and restart services. But sometimes you just need to run a real command. Perhaps it is an installer for your monitoring system or to add records to an LDAP server.

9
1
​
2
execute “bundle install --deployment” do
3
cwd “/srv/app”
4
environment ({‘HOME’ => ‘/home/myhome’})
5
user “app user”
6
group “app group”
7
end
8
​
9
​

In the example above, the Chef client will switch to the user and group provided, add HOME to the environment variables, and change directories to “/srv/app” before running the command provided as the name of the resource.

Script (Bash, csh, Perl, Python, Ruby)

The script resource is an extension of the execute resource, supporting all of parameters of the latter, while allowing you to pass a block of commands inside the resource. This works well for running a custom compile of an application that you do not have a package for or for running a set of tasks every time the Chef client runs.

11
1
​
2
script “git update and garbage collection” do
3
interpreter “bash”
4
user “root”
5
cwd “/srv/app”
6
code <<:-EOH
7
git pull stage
8
git gc
9
EOH
10
end
11
​

You can see the added code block with the Ruby specific <<- annotation to create a string out of everything it sees until the pattern provided (EOH in this case) is reached.

Section 7

Writing a Cookbook

Attributes

Other than Ohai, we really haven’t talked about variables and how you provide different values to different machines depending on location, purpose or other metadata.

Attributes extend the node model just like Ohai does but are set or changed inside of cookbooks and roles. Cookbook attributes will generally go in the attributes/default.rb file.Once again, the attributes file is just Ruby with some shortcuts built in. You can use Ohai information to make decisions about the values you want to assign to your attributes.

Default, Normal and Override

Chef allows us to set defaults and provide overrides for attributes at the cookbook, environment, role, and node level. Of course if there is more than one value for an attribute we need to know which one wins. That brings us to…

Precedence

Attribute precedence can get tricky. Not only do override attributes take precedence over normal attributes (which beat out default attributes), but where an attribute is declared matters as well. As you explore more complicated infrastructure, you will need to become comfortable with attribute precedence. Instead of trying to explain it here, check out http://wiki.opscode. com/display/chef/Setting+Attributes+%28Examples%29 and try some experimentation.

Conditional Execution

There will be many cases where you want a resource to execute its action only if certain conditions are met. While some resources cover the simple cases of this (the execute resource has a property called creates that prevents the command from running if a given file already exists), you will come up with other cases in modeling your configuration that aren’t covered.

Chef provides two conditional execution attributes on every resource: not_if and only_if. Both will take either a string, which will be executed as a shell command, or a Ruby block. A return code of 0 from the shell command is treated like a value of true from the Ruby block. For instance, you might only want a particular script to run if the /etc/hosts file contains the right machine name.

6
1
​
2
execute “run the script” do
3
  command “rune --now”
4
  only_if “grep my server /etc/hosts”
5
end
6
​

An experienced BASH scripter knows that the grep command returns 0 if it finds what you were looking for. The resource above will execute the command rune --now only when the /etc/hosts file contains the string “my server”. Passing a Ruby block is similar but gives you the full power of the Ruby language as part of your conditional.

6
1
​
2
execute “run the script again” do
3
  command “rune --now”
4
  not_if { File.exists?(“/etc/passwd”) }
5
end
6
​

In this case, we are trying to run the same script, but we aren’t going to do it if the file /etc/passwd exists. Since we are using Ruby we can call the exists? static method on the File class.

Notifications

Sometimes you want an action to be applied to a resource if something changes. For example, if your httpd.conf file changed you would want to restart Apache. All resources support the notifies attribute that takes an action, a service, and optional timing.

6
1
​
2
template “/etc/httpd/conf/httpd.conf” do
3
  source “httpd.conf.erb”
4
  notifies :restart, “service[apache2]”, :delayed
5
end
6
​

In the example above we declare a template resource that, when it changes, will tell the apache2 service to restart. The last parameter tells Chef to delay the restart to the end of the client run, which keeps you from restarting a service over and over if multiple configuration files change during one client run.

Putting it Together

So lets string together the things we have covered and create a simple cookbook for managing the NTP daemon on our servers.

First lets create a couple of attributes, specifically an array of servers to poll for time changes and if we want to enable statistics on our ntpd server.

6
1
​
2
attributes/default.db
3
default[‘ntpd’][‘servers’] = [‘tick.ucla.edu’,
4
‘tick.uh.edu’]
5
default[‘ntpd’][‘stats_enabled’] = false
6
​

By defining these as default attributes, they can be overridden later with servers that are closer, based on role or environment.

Now lets create a recipe with three resources in it: a package, a template, and a service.

14
1
​
2
recipes/default.rb
3
package “ntpd” do
4
action :install
5
end
6
template “/etc/ntpd.conf” do
7
source “ntpd.conf.erb”
8
owner “0755”
9
notifies :restart, “service[ntpd]”
10
end
11
service “ntpd” do
12
action [:start, :enable]
13
end
14
​

The package resource installs the NTP, while the template and service make sure it is configured and running. When the template is updated it notifies the service to restart.

The only thing we need now is our NTP configuration template (snipped for length).

15
1
​
2
templates/default/ntpd.conf.erb
3
driftfile /var/lib/ntp/ntp.drift
4
<% if node[‘ntpd’][‘stats_enabled’] -%>
5
statsdir /var/log/ntpstats/
6
<% end -%>
7
statistics loopstats peerstats clockstats
8
filegen loopstats file loopstats type day enable
9
filegen peerstats file peerstats type day enable
10
filegen clockstats file clockstats type day enable
11
<% node[‘ntpd’][‘servers’].each do |srv| -%>
12
server <%= srv %>
13
<% end -%>
14
--- SNIP ---
15
​
Section 8

ROLES

http://wiki.opscode.com/display/chef/Roles

The run list of a node either contains recipes or roles. Roles have their own run list, allowing you to group common functions or service types together and not repeating yourself with a long run list on each of your application servers.

7
1
​
2
name “webservers”
3
description “HTTP server role”
4
run_list “recipe[apache2]”, “recipe[ntpd]”
5
default_attributes “ntpd” => { “stats_enabled” => true }
6
--- SNIP ---
7
​

This role applies the apache2 and ntpd recipes and changes the value of the stats_enabled attribute to true. Roles can contain other roles as well as recipes in their run list, which allows you to build a hierarchy of roles to model your environment. Most environments start with a base or common role that holds the pieces that apply to every node and then grow to include individual application.

Section 9

Advanced Chef

So now you have an idea how to build your cookbooks. There are other pieces to make your life easier and your automation cleaner. Since I cannot cover them all, here is a quick list so you know what you can look for.

Data Bags: http://wiki.opscode.com/display/chef/Data+Bags

Search:http://wiki.opscode.com/display/chef/Search

Environments:http://wiki.opscode.com/display/chef/Environments

Definitions:http://wiki.opscode.com/display/chef/Definitions

Lightweight Resources and Providers:http://wiki.opscode.com/display/ chef/Lightweight+Resources+and+Providers+%28LWRP%29

Like This Refcard? Read More From DZone

related article thumbnail

DZone Article

How to Convert XLS to XLSX in Java
related article thumbnail

DZone Article

Automatic Code Transformation With OpenRewrite
related article thumbnail

DZone Article

Accelerating AI Inference With TensorRT
related article thumbnail

DZone Article

A Complete Guide to Modern AI Developer Tools
related refcard thumbnail

Free DZone Refcard

Platform Engineering Essentials
related refcard thumbnail

Free DZone Refcard

The Essentials of GitOps
related refcard thumbnail

Free DZone Refcard

Continuous Integration Patterns and Anti-Patterns
related refcard thumbnail

Free DZone Refcard

Getting Started With CI/CD Pipeline Security

ABOUT US

  • About DZone
  • Support and feedback
  • Community research
  • Sitemap

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 100
  • Nashville, TN 37211
  • support@dzone.com

Let's be friends: