Update: chef-solo is no longer a "separate" tool from chef-client. From the documentation:
chef-solo is a command that executes chef-client in a way that does not require the Chef server in order to converge cookbooks. chef-solo uses chef-client’s Chef local mode, and does not support the following functionality present in chef-client / server configurations
This change was implemented in Chef version 12.11, which fulfills the community RFC. This was released on June 8, 2016. The old behavior, which is described below (albeit from 4 years ago at this time), is available with the --legacy-mode
argument to chef-solo
.
For the most current and up to date information about Chef Solo, please read the official documentation
My original answer is below:
Chef (solo OR client) does not "run" all the cookbooks.
It loads all the cookbook's Ruby files in the following directories, in this order:
- libraries/*.rb
- providers/*.rb
- resources/*.rb
- attributes/*.rb
- definitions/*.rb
Then, it loads all the recipes that are in the node's expanded run list. With chef-solo
, this comes from a JSON file supplied with -j
, or can be done in attributes files - however the latter is deprecated and not recommended.
Any recipes that are included by those in the expanded run list via include_recipe
are also loaded. Chef loads recipes by evaluating them as Ruby code. When it encounters ruby code that it recognizes to be a resource, or a definition, it adds the resource to the Resource Collection, which is an numerically ordered indexed hash of all the resources. Definitions are special, in that Chef adds the resources they contain, not the definition itself, to the Resource Collection. Included recipes' resources via include_recipe
are inserted in place, then Chef continues in the including recipe.
Once Chef has processed all the recipes for all their resources, it walks the resource collection taking the specified action on each in the order it was added to the collection.
I highly recommend reading the documentation on this process. It applies to Chef Solo; only the part where the cookbooks are downloaded from the server is skipped.
To ensure that only the recipes that you want to test are tested, include them in the node's run list via a JSON file. It looks like this:
{ "run_list": ["recipe[mything]", "recipe[anotherthing]"] }
The run list is just an array, and items can be recipe[cookbookname]
or role[somerole]
. You can read more about how to use Roles with Chef Solo on the Chef Solo documentation.
If you have system changes being made when Chef is loading the cookbook components (the ruby files in each cookbook), then "You're Doing It Wrong"(tm) and should refactor those things to be done in a resource called from a recipe.