Skip to content

isabella232/chef-handler-spinup-complete

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SpinupComplete

Chef handler for notifying Sensu when spinup succeeds.

Usage

The Chef docs [1] lay out a pretty simple way to use handlers by leveraging the chef_handler resource. Just ship the chef-handler-spinup-complete.rb file to your handlers location and declare a new handler:

cookbook_file "#{node[:chef_handler][:handler_path]}/chef-handler-spinup-complete.rb" do
  source 'chef-handler-spinup-complete.rb'
  mode 00600
end

chef_handler 'SpinupComplete' do
  source "#{node[:chef_handler][:handler_path]}/chef-handler-spinup-complete.rb"
  action :enable
end

Obviously make sure to copy the ruby file into the /files/default directory of your cookbook as well. Alternatively, install it as a Rubygem and source it that way:

chef_gem 'chef-handler-spinup-complete' do
  action :install
end

chef_handler 'SpinupComplete' do
  source ::File.join(Gem.all_load_paths.grep(/chef-handler-spinup-complete/).first,
                     'chef-handler-spinup-complete.rb')
  action :enable
end

[1] http://docs.opscode.com/essentials_handlers_install.html

License

Apache License, Version 2.0

Author

Simple Finance ops@simple.com

About

Notifies you (and resolves) via Sensu when Spinup of a fresh box is complete

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%