Project

chef-sync

0.0
No release in over 3 years
Low commit activity in last 3 years
Synchronize Chef w/ Cap, Mongro, etc
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 0
>= 0

Runtime

>= 0
 Project Readme

chef-sync

Synchronize Chef nodes w/ Capistrano and other config

Installation

Add this line to your application's Gemfile:

gem 'chef-sync'

And then execute:

$ bundle

Or install it yourself as:

$ gem install chef-sync

Usage

$> chef-sync
$ Target: /src/your_project
$ ----------------------------------------------------------
$ - Synchronizing Cap config/stages.yml w/ Chef Node Set
$ ----------------------------------------------------------
$ - production/app web ...
$ - production/resque ...
$ - qa/app web ...
$ - qa/resque ...
$ - staging/app web ...
$ - staging/resque ...
$ ----------------------------------------------------------
$ - Synchronizing config/mongo.yml w/ Chef Node Set
$ ----------------------------------------------------------
$ - qa...
$ - staging...
$ - production...

Custom Role Mapping

You can customize the mapping of Chef to Capistrano roles by generating a per-project chef-sync config file.

$> chef-sync -i
Target: /src/your_project
----------------------------------------------------------
- Generating default config /src/your_project/.chef-sync/config
----------------------------------------------------------
$> cat /src/your_project/.chef-sync/config
{
  "roles": {
    "rails_server": [
      "app",
      "web"
    ],
    "rails_utility": "resque"
  }
}

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request