cookbook 'resource', '= 0.2.1'
The resource cookbook has been deprecated
Author provided reason for deprecation:
The resource cookbook has been deprecated and is no longer being maintained by its authors. Use of the resource cookbook is no longer recommended.
You may find that the compat_resource cookbook is a suitable alternative.
resource (3) Versions 0.2.1 Follow6
Easier, more powerful Chef Resources
cookbook 'resource', '= 0.2.1', :supermarket
knife supermarket install resource
knife supermarket download resource
The Resource Cookbook
Chef Resources are incredibly important to creating good, useful, reusable cookbooks. Yet people often don't create them because it's too hard. The resource cookbook aims to change that.
The resource cookbook is an attempt to make Chef Resources significantly easier and more fun to create, while being even more powerful. It does this by:
- Vastly simplifying resource writing so you just make a "resource" and "recipe" in a single file.
- Making good primitive resources easier to build with builtin test-and-set support.
- Allowing users to read data from resources, making them significantly more useful.
- Allowing users to easily customize resource definitions in-place, adding defaults and tweaks.
I am looking for people to try this out and give feedback. IT IS EXPERIMENTAL. There are bugs (though I generally don't know what they are). Things will change. There is a lot of feedback to gather and that will affect what it does. But this has been revised many, many times in an attempt to produce something close enough to right that I hope it won't change much, or in fundamental ways.
This is also unfinished in that there are more features to be added: chief among them are nested properties (Hash, Array, Set and Struct), nested resources (github.organization.repository) and recipe semantics (immediate mode and parallel recipes). 0.1 is a stop along the way, but a very significant one that defines the basis for Resources.
For an in-depth comparison of Chef Resources and ChefResource Resources, see the [0.1 release notes](docs/0.1-release.md).
Getting Started
To get started, upload the resource cookbook and add this to your metadata.rb
:
depends "resource"
ChefResource is now loaded in, and the following features are available:
- Chef.resource
, ChefResource.define
and ChefResource.defaults
will define and customize resources
- All recipes everywhere can call ChefResource resources
- The resources
directory in your cookbook now creates ChefResource resources (via Chef.resource
).
- Recipes in your cookbook have resource
, define
and defaults
available (which call the ChefResource.
equivalent)
NOTE: cookbooks that depend on your cookbook will not automatically be ChefResourceed. Only cookbooks that explicitly depend on the resource cookbook will be transformed.
Compatibility
ChefResource works with Chef 12. It also does not change anything about existing cookbook behavior, and only affects cookbooks who have depends "resource"
in their metadata. Resources you create with ChefResource are available to all cookbooks, including existing cookbooks which do not directly depend on the "resource" cookbook.
Define: Dashing Off a Quick Resource
Say you noticed that you're creating a series of "user home directories," like this:
# Old recipe user 'jkeiser' do group 'users' end directory "/home/jkeiser" do owner 'jkeiser' group 'users' mode 0700 end file "/home/jkeiser/.bashrc" do owner 'jkeiser' group 'users' mode 0700 content "sh /sys/global_bashrc" end user 'fnichol' do group 'users' end directory "/home/fnichol" do owner 'fnichol' group 'users' mode 0700 end file "/home/fnichol/.bashrc" do owner 'fnichol' group 'users' mode 0700 content "sh /sys/global_bashrc" end ...
That's a lot of repetition! How do you make repetition better in Chef? A resource! Just write this in your recipe:
define :user_bundle, :username, primary_group: 'users' do user username do group primary_group end directory "/home/#{username}" do owner username group primary_group mode 0700 end file "/home/#{username}/.bashrc" do content "sh /sys/global_bashrc" owner username group primary_group mode 0700 end end # Now let's use our resource! user_bundle 'jkeiser' do end user_bundle 'fnichol' do end user_bundle 'blargh' do end
Much more concise, much more readable, much easier to change!
Creating a Simple Resource
If you want to really customize the properties of a resource, or want to do more interesting things, you can always create a resources
file. ChefResource appropriates the LWRP resources
directory, so you create a resources/user_bundle.rb
:
# resources/user_bundle.rb property :username, String, identity: true property :primary_group, String property :home_dir, Path, relative_to: '/home' do default { username } end recipe do user username do group primary_group end directory home_dir do owner username group primary_group mode 0700 end file "#{home_dir}/.bashrc" do content "sh /sys/global_bashrc" owner username group primary_group mode 0700 end end
# recipes/default.rb test_user_bundle 'jkeiser' do end test_user_bundle 'fnichol' do end test_user_bundle 'blargh' do end
Some features here:
- property
is how you define a named thing
- identity: true
means that when you write user_bundle 'jkeiser'
, username
will be set to jkeiser
.
- String
and Path
are property types. It means the resource will not allow the user to set the property to something else, like 1 or false, which isn't a valid path or username.
- relative_to: '/home'
is a modifier for Path
saying "when the user says home_dir 'jkeiser2'
, set home_dir
to /home/jkeiser2
."
- default { username }
is a computed default: if the user does not set home_dir
, home_dir
will be /home/<username>
NOTE: you can define a resource anywhere by writing Chef.resource :name do ... end
, and writing property
and recipe
statements inside. You can do this in libraries
, recipes
or even outside Chef.
Building Primitive Resources: Load and Converge
Up until now, we've been showing "compound" resources whose primary job is to wrap other resources like file
, package
and service
. This is enough for huge numbers of people, and the primitive resources handle the work of "test-and-set," showing the "(up to date)" if nothing needs to change, or the green text when a change occurs.
Sometimes you need to build a real primitive resource, when file
package
and service
aren't enough. When this comes up, ChefResource handles the work of test-and-set for you with the load
and converge
methods.
Consider a simple file resource:
# resources/file.rb property :path, Path, identity: true property :mode, Integer property :content, String recipe do converge do File.chmod(mode, path) IO.write(path, content) end end def load mode File.stat(path).mode content IO.read(path) end
The The resource cookbook things here:
-
converge do ...
handles test-and-set. It will check to see if the user has changedmode
orcontent
from its real value (as read in byload
). If so, it will print an appropriate message in green text showing what's changed, and mark the resource as updated. -
def load
loads the current values of the actual resource. This is called whenconverge
happens, or when the user asks for a value that hasn't been filled in (like if they ask formode
and haven't set it yet).
What's also interesting is you have now defined a read API. If the user does file('/x.txt').content
, then it will show you the file contents of /x.txt
.
Customizing Resources in Cookbooks: Defaults
As a user of a resource, there are a number of times where you're repeating something over and over. How many of us have typed this:
file '/x.txt' do owner 'jkeiser' group 'users' mode 0755 content 'x' end file '/y.txt' do owner 'jkeiser' group 'users' mode 0755 content 'y' end file '/z.txt' do owner 'jkeiser' group 'users' mode 0755 content 'z' end
ChefResource gives you a quick way to redefine the defaults of a resource:
defaults :my_file, :file, owner: 'jkeiser', group: 'users', mode: 0755 my_file '/x.txt' do content 'x' end my_file '/y.txt' do content 'y' end my_file '/z.txt' do content 'z' end
You can also specialize resources with more complex behavior:
# A version of "file" that assumes the group == the username resource :my_file, :file do attribute :group, String do default { username } end end
Contributing
PRs are welcome at github!
Dependent cookbooks
This cookbook has no specified dependencies.
Contingent cookbooks
Resource Cookbook CHANGELOG
0.2.1 (2/19/2015)
- Rename ChefResource.resource -> Chef.resource
- Get cookbook include working again
0.2 (2/19/2015)
- Initial publication
- Single-file resources
- depends "resource" is how you use it
- Read/write resources with load/converge
- define, defaults, resource keywords
- strongly typed properties and coercion
Foodcritic Metric
0.2.1 failed this metric
FC031: Cookbook without metadata file: /tmp/cook/78dd259a6e3136bb9e7c2da7/resource/metadata.rb:1
FC045: Consider setting cookbook name in metadata: /tmp/cook/78dd259a6e3136bb9e7c2da7/resource/metadata.rb:1
0.2.1 failed this metric
FC045: Consider setting cookbook name in metadata: /tmp/cook/78dd259a6e3136bb9e7c2da7/resource/metadata.rb:1