0.02
No commit activity in last 3 years
No release in over 3 years
Capistrano plugin for removing/readd servers to EC2 load balancers
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

CapistranoELB

A simple library to control Amazon Elastic Load Balancers for use within Capistrano

As of version 0.4.0 it looks for an 'elb' tag with value of the name of a loadbalancer to decide when to remove/readd servers.

Install

gem install capistrano-elb

Usage

You should have ec2credentials.yaml in the same directory as your cap files

#ec2credentials.yaml
--- 
:aws_access_key_id: YOUR_KEY_ID_
:aws_secret_access_key: YOUR_KEY

then just

require "capistrano-elb/tasks"

This will instantiate an instance of the CapELB class and add hooks to remove/readd before/after deploys

(Equivalent to having the following in your deploy.rb)

require "capistrano-elb"

namespace :elb do
  capELB = CapELB.new()

  task :remove do 
    servers = roles[:web].servers.map {|server| server.host}
    puts "Removing #{servers} from ELB"
    capELB.remove servers
  end

  task :add do 
    servers = roles[:web].servers.map {|server| server.host}
    puts "Adding #{servers} to ELB"
    capELB.add servers
  end

  task :check do 
    puts capELB.check_config
  end
end

before "deploy", "elb:remove"
after "deploy", "elb:add"

You can just require capistrano-elb and do whatever you want inside your deploy scripts of course

If you want to hook after deploy but before the elb:add you can target after deploy:restart :your_task