-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from chef/jk/org_and_scope
Add encapsulated Chef runs that capture and stream output
- Loading branch information
Showing
11 changed files
with
373 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env ruby | ||
require 'cheffish/chef_run' | ||
|
||
def post(resource_type, name, properties) | ||
chef_run = Cheffish::ChefRun.new | ||
begin | ||
r = chef_run.client.build_resource(resource_type, name) do | ||
properties.each { |attr, value| public_send(attr, value) } | ||
end | ||
chef_run.client.add_resource(r) | ||
chef_run.converge | ||
puts "CODE: #{chef_run.updated? ? 201 : 200}" | ||
puts "STDOUT: #{chef_run.stdout}\nSTDERR: #{chef_run.stderr}\nLOGS: #{chef_run.logs}" | ||
rescue | ||
puts "CODE: #{400}" | ||
puts "ERROR: #{$!}\nBACKTRACE: #{$!.backtrace}\nSTDOUT: #{chef_run.stdout}\nSTDERR: #{chef_run.stderr}\nLOGS: #{chef_run.logs}" | ||
end | ||
end | ||
|
||
post(ARGV.shift, ARGV.shift, Hash[*ARGV]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |s| | |
s.email = '[email protected]' | ||
s.homepage = 'http://wiki.opscode.com/display/chef' | ||
|
||
s.add_dependency 'chef-zero', '~> 4.0' | ||
s.add_dependency 'chef-zero', '~> 4.2' | ||
s.add_dependency 'chef' , '~> 12.1' | ||
|
||
s.add_development_dependency 'rake' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
require 'cheffish/basic_chef_client' | ||
|
||
module Cheffish | ||
class ChefRun | ||
# | ||
# @param chef_config A hash with symbol keys that looks suspiciously similar to `Chef::Config`. | ||
# Some possible options: | ||
# - stdout: <IO object> - where to stream stdout to | ||
# - stderr: <IO object> - where to stream stderr to | ||
# - log_level: :debug|:info|:warn|:error|:fatal | ||
# - log_location: <path|IO object> - where to stream logs to | ||
# - verbose_logging: true|false - true if you want verbose logging in :debug | ||
# | ||
def initialize(chef_config={}) | ||
@chef_config = chef_config || {} | ||
end | ||
|
||
attr_reader :chef_config | ||
|
||
class StringIOTee < StringIO | ||
def initialize(*streams) | ||
super() | ||
@streams = streams.flatten.select { |s| !s.nil? } | ||
end | ||
|
||
attr_reader :streams | ||
|
||
def write(*args, &block) | ||
super | ||
streams.each { |s| s.write(*args, &block) } | ||
end | ||
end | ||
|
||
def client | ||
@client ||= begin | ||
chef_config = self.chef_config.dup | ||
chef_config[:log_level] ||= :debug if !chef_config.has_key?(:log_level) | ||
chef_config[:verbose_logging] = false if !chef_config.has_key?(:verbose_logging) | ||
chef_config[:stdout] = StringIOTee.new(chef_config[:stdout]) | ||
chef_config[:stderr] = StringIOTee.new(chef_config[:stderr]) | ||
chef_config[:log_location] = StringIOTee.new(chef_config[:log_location]) | ||
@client = ::Cheffish::BasicChefClient.new(nil, | ||
[ event_sink, Chef::Formatters.new(:doc, chef_config[:stdout], chef_config[:stderr]) ], | ||
chef_config | ||
) | ||
end | ||
end | ||
|
||
def event_sink | ||
@event_sink ||= EventSink.new | ||
end | ||
|
||
# | ||
# output | ||
# | ||
def stdout | ||
@client ? client.chef_config[:stdout].string : nil | ||
end | ||
def stderr | ||
@client ? client.chef_config[:stderr].string : nil | ||
end | ||
def logs | ||
@client ? client.chef_config[:log_location].string : nil | ||
end | ||
|
||
def resources | ||
client.resource_collection | ||
end | ||
|
||
def converge | ||
begin | ||
client.converge | ||
@converged = true | ||
rescue RuntimeError => e | ||
@raised_exception = e | ||
raise | ||
end | ||
end | ||
|
||
def reset | ||
@client = nil | ||
@converged = nil | ||
@stdout = nil | ||
@stderr = nil | ||
@logs = nil | ||
@raised_exception = nil | ||
end | ||
|
||
def converged? | ||
!!@converged | ||
end | ||
|
||
def converge_failed? | ||
@raised_exception.nil? ? false : true | ||
end | ||
|
||
def updated? | ||
client.updated? | ||
end | ||
|
||
def up_to_date? | ||
!client.updated? | ||
end | ||
|
||
def output_for_failure_message | ||
message = "" | ||
if stdout && !stdout.empty? | ||
message << "--- ---\n" | ||
message << "--- Chef Client Output ---\n" | ||
message << "--- ---\n" | ||
message << stdout | ||
message << "\n" if !stdout.end_with?("\n") | ||
end | ||
if stderr && !stderr.empty? | ||
message << "--- ---\n" | ||
message << "--- Chef Client Error Output ---\n" | ||
message << "--- ---\n" | ||
message << stderr | ||
message << "\n" if !stderr.end_with?("\n") | ||
end | ||
if logs && !logs.empty? | ||
message << "--- ---\n" | ||
message << "--- Chef Client Logs ---\n" | ||
message << "--- ---\n" | ||
message << logs | ||
end | ||
message | ||
end | ||
|
||
class EventSink | ||
def initialize | ||
@events = [] | ||
end | ||
|
||
attr_reader :events | ||
|
||
def method_missing(method, *args) | ||
@events << [ method, *args ] | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.