Skip to content

challengee/librarian

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Librarian

A tool to resolve recursively a set of specifications and fetch and install the fully resolved specifications.

Librarian::Mock

An adapter for Librarian for unit testing the general features. The mock source is in-process and in-memory and does not touch the filesystem or the network.

Librarian::Chef

An adapter for Librarian applying to Chef cookbooks in a Chef Repository.

Install librarian:

$ gem install librarian

Make sure your cookbooks directory is gitignored

$ cd ~/path/to/chef-repo
$ git rm -r cookbooks # if the directory is present
$ echo cookbooks >> .gitignore

Note that librarian takes over your cookbooks directory and manages it for you based on your Cheffile. Your Cheffile becomes the authoritative source for what cookbooks you have, rather than the directories in your cookbooks directory.

Make a Cheffile

$ librarian-chef init

Add dependencies and their sources to Cheffile

$ cat Cheffile
    site 'http://community.opscode.com/api/v1'
    cookbook 'ntp'
    cookbook 'timezone'
    cookbook 'rvm',
      :git => 'https://github.com/fnichol/chef-rvm',
      :ref => 'v0.7.1'

install dependencies into ./cookbooks

$ librarian-chef install [--clean] [--verbose]

Check your Cheffile.lock into version control

$ git add Cheffile.lock
$ git commit -m "I want these particular versions of these particular cookbooks from these particular."

Update your cheffile with new/changed/removed constraints/sources/dependencies

$ cat Cheffile
    site 'http://community.opscode.com/api/v1'
    cookbook 'ntp'
    cookbook 'timezone'
    cookbook 'rvm',
      :git => 'https://github.com/fnichol/chef-rvm',
      :ref => 'v0.7.1'
    cookbook 'monit' # new!
$ git diff Cheffile
$ librarian-chef install [--verbose]
$ git diff Cheffile.lock
$ git add Cheffile
$ git add Cheffile.lock
$ git commit -m "I also want these additional cookbooks."

Update the version of a dependency

$ librarian-chef update ntp timezone monit [--verbose]
$ git diff Cheffile.lock
$ git add Cheffile.lock
$ git commit -m "I want updated versions of these cookbooks."

Push your changes to the git repository

$ git push origin master

Upload the cookbooks to your chef-server

$ knife cookbook upload --all

You should .gitignore your ./cookbooks directory. If you are manually tracking/vendoring outside cookbooks within the repository, put them in another directory such as ./cookbooks-sources and use the :path source. You should typically not need to do this.

You can integrate your knife.rb with Librarian. Stick the following in your knife.rb:

require 'librarian/chef/integration/knife'
cookbook_path Librarian::Chef.install_path, "chef-repo/site-cookbooks"

In the above, make sure not to include the path to your chef-repo/cookbooks. If you have additional cookbooks directories in your chef-repo that you use for :path-sourced cookbooks in your Cheffile, make sure not to include the paths to those additional cookbooks directories either in your chef-repo. Since your chef-repo/site-cookbooks directory is for overrides (monkey-patches) to external cookbooks, and since you should not have any :path-sourced cookbooks in your Cheffile sourced from that directory, you still need to include your chef-repo/site-cookbooks directory in the above list.

What this integration does is when you use knife, it will enforce that your Cheffile and Cheffile.lock are in sync. When you knife cookbook upload, it will be sure to upload the same cookbook as is in your Cheffile.lock, regardless of what you've done to your chef-repo/cookbooks directory.

License

Written by Jay Feldblum.

Copyright (c) 2011 ApplicationsOnline, LLC.

Released under the terms of the MIT License.

About

Librarian - A Bundler for your Chef Cookbooks

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 100.0%