Pregunta

Is there an alternative to the capistrano-chef gem for chef-solo? Mostly, to avoid defining server information twice.

¿Fue útil?

Solución

I found something fresh and hot on the topic:

Roundsman

Gemfile:

gem 'roundsman', :require => false

Capfile:

require 'roundsman/capistrano'

See readme for details.

Otros consejos

I decided to write a ruby gem to parse the files in nodes/*.json and transform them to Capistrano-friendly addresses:

gem "Chef_Solo_Nodes"

Then, in the cap deploy file:

require "Chef_Solo_Nodes"
role :app, *Chef_Solo_IPs('app')
role :db, *Chef_Solo_IPs('db')

Which is equivalent to:

role :app, "user@host:port", "xx.xx.xx.xx"
role :db, "xx.xx.xx.xx"

Each node/*.json file can optionally define attributes:

  • ipaddress
  • user (or login)
  • port
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top