knife-dsl 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +75 -0
- data/Rakefile +1 -0
- data/knife-dsl.gemspec +21 -0
- data/lib/knife/dsl.rb +60 -0
- data/lib/knife/dsl/version.rb +7 -0
- metadata +69 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Erik Hollensbe
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,75 @@
|
|
1
|
+
# Knife-DSL
|
2
|
+
|
3
|
+
A small library that lets you drive Chef's `knife` programmatically
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'knife-dsl'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install knife-dsl
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
The main feature of this library is the ability to drive knife as a method call
|
22
|
+
as opposed to an individual program. This has a number of benefits:
|
23
|
+
|
24
|
+
* It's a lot faster
|
25
|
+
* You can capture output
|
26
|
+
* You're relying on code that has a contract to maintain compatible with Chef
|
27
|
+
* Use knife plugins all you want without breaking your workflow
|
28
|
+
* Optionally, Chef becomes constrained by a gemfile (as do the plugins you use)
|
29
|
+
and that constraint remains consistent.
|
30
|
+
|
31
|
+
It provides two calls, `knife` and `knife_capture` that are injected into the
|
32
|
+
top-level namespace automatically. Additionally, if you are using `rake`, it
|
33
|
+
will detect this and make it available to rake's DSL as well.
|
34
|
+
|
35
|
+
If you wish to use this code elsewhere, just `include Chef::Knife::DSL` into
|
36
|
+
your classes/modules.
|
37
|
+
|
38
|
+
Both commands take two argument-passing styles. Both use an array of strings to
|
39
|
+
represent the ARGV passed to knife, but there is additionally a shorthand to
|
40
|
+
make the actual subcommand stand out: if you supply a symbol or string with
|
41
|
+
underscore-delimited subcommand names, it will automatically convert this for
|
42
|
+
you. This allows you to visually distinguish a command from its arguments.
|
43
|
+
|
44
|
+
knife-dsl allows the use of alternative Chef Configs via the `CHEF_CONFIG`
|
45
|
+
environment variable.
|
46
|
+
|
47
|
+
## Example
|
48
|
+
|
49
|
+
Here's a `Rakefile` which lists nodes in one task, and in another, converts the
|
50
|
+
node metadata supplied by `knife node show $x` to something suitable to display
|
51
|
+
with `pp`. The practical applications of both tasks are pretty specious, but
|
52
|
+
they're small and display the functionality.
|
53
|
+
|
54
|
+
```ruby
|
55
|
+
require 'knife/dsl'
|
56
|
+
require 'pp'
|
57
|
+
require 'json'
|
58
|
+
|
59
|
+
task :list_nodes do
|
60
|
+
knife :node_list
|
61
|
+
end
|
62
|
+
|
63
|
+
task :show_node, :node_name do |task_name, args|
|
64
|
+
stdout, stderr = knife_capture :node_show, [args[:node_name], '-F', 'j']
|
65
|
+
pp JSON.load(stdout)
|
66
|
+
end
|
67
|
+
```
|
68
|
+
|
69
|
+
## Contributing
|
70
|
+
|
71
|
+
1. Fork it
|
72
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
73
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
74
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
75
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/knife-dsl.gemspec
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'knife/dsl/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "knife-dsl"
|
8
|
+
gem.version = Chef::Knife::DSL::VERSION
|
9
|
+
gem.authors = ["Erik Hollensbe"]
|
10
|
+
gem.email = ["erik+github@hollensbe.org"]
|
11
|
+
gem.description = %q{A small library that lets you drive Chef's 'knife' programmatically}
|
12
|
+
gem.summary = %q{A small library that lets you drive Chef's 'knife' programmatically}
|
13
|
+
gem.homepage = ""
|
14
|
+
|
15
|
+
gem.files = `git ls-files`.split($/)
|
16
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
|
+
gem.require_paths = ["lib"]
|
19
|
+
|
20
|
+
gem.add_dependency 'chef', '~> 10.16.0'
|
21
|
+
end
|
data/lib/knife/dsl.rb
ADDED
@@ -0,0 +1,60 @@
|
|
1
|
+
require 'chef/application/knife'
|
2
|
+
require 'knife/dsl/version'
|
3
|
+
require 'stringio'
|
4
|
+
|
5
|
+
module Chef::Knife::DSL
|
6
|
+
module Chef::Knife::DSL::Support
|
7
|
+
def self.run_knife(command, args)
|
8
|
+
unless command.kind_of?(Array)
|
9
|
+
command = command.to_s.split(/[\s_]+/)
|
10
|
+
end
|
11
|
+
|
12
|
+
command += args
|
13
|
+
|
14
|
+
if ENV["CHEF_CONFIG"]
|
15
|
+
command += ['-c', ENV["CHEF_CONFIG"]]
|
16
|
+
end
|
17
|
+
|
18
|
+
opts = Chef::Application::Knife.new.options
|
19
|
+
Chef::Knife.run(command, opts)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def knife(command, args=[])
|
24
|
+
Chef::Knife::DSL::Support.run_knife(command, args)
|
25
|
+
end
|
26
|
+
|
27
|
+
def knife_capture(command, args=[], input=nil)
|
28
|
+
null = Gem.win_platform? ? File.open('NUL:', 'r') : File.open('/dev/null', 'r')
|
29
|
+
|
30
|
+
warn = $VERBOSE
|
31
|
+
$VERBOSE = nil
|
32
|
+
stderr, stdout, stdin = STDERR, STDOUT, STDIN
|
33
|
+
|
34
|
+
Object.const_set("STDERR", StringIO.new('', 'r+'))
|
35
|
+
Object.const_set("STDOUT", StringIO.new('', 'r+'))
|
36
|
+
Object.const_set("STDIN", input ? StringIO.new(input, 'r') : null)
|
37
|
+
$VERBOSE = warn
|
38
|
+
|
39
|
+
Chef::Knife::DSL::Support.run_knife(command, args)
|
40
|
+
return STDOUT.string, STDERR.string
|
41
|
+
ensure
|
42
|
+
warn = $VERBOSE
|
43
|
+
$VERBOSE = nil
|
44
|
+
Object.const_set("STDERR", stderr)
|
45
|
+
Object.const_set("STDOUT", stdout)
|
46
|
+
Object.const_set("STDIN", stdin)
|
47
|
+
$VERBOSE = warn
|
48
|
+
null.close
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
class << eval("self", TOPLEVEL_BINDING)
|
53
|
+
include Chef::Knife::DSL
|
54
|
+
end
|
55
|
+
|
56
|
+
if defined? Rake::DSL
|
57
|
+
module Rake::DSL
|
58
|
+
include Chef::Knife::DSL
|
59
|
+
end
|
60
|
+
end
|
metadata
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: knife-dsl
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Erik Hollensbe
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-11-07 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: chef
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 10.16.0
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 10.16.0
|
30
|
+
description: A small library that lets you drive Chef's 'knife' programmatically
|
31
|
+
email:
|
32
|
+
- erik+github@hollensbe.org
|
33
|
+
executables: []
|
34
|
+
extensions: []
|
35
|
+
extra_rdoc_files: []
|
36
|
+
files:
|
37
|
+
- .gitignore
|
38
|
+
- Gemfile
|
39
|
+
- LICENSE.txt
|
40
|
+
- README.md
|
41
|
+
- Rakefile
|
42
|
+
- knife-dsl.gemspec
|
43
|
+
- lib/knife/dsl.rb
|
44
|
+
- lib/knife/dsl/version.rb
|
45
|
+
homepage: ''
|
46
|
+
licenses: []
|
47
|
+
post_install_message:
|
48
|
+
rdoc_options: []
|
49
|
+
require_paths:
|
50
|
+
- lib
|
51
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
52
|
+
none: false
|
53
|
+
requirements:
|
54
|
+
- - ! '>='
|
55
|
+
- !ruby/object:Gem::Version
|
56
|
+
version: '0'
|
57
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
58
|
+
none: false
|
59
|
+
requirements:
|
60
|
+
- - ! '>='
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
requirements: []
|
64
|
+
rubyforge_project:
|
65
|
+
rubygems_version: 1.8.24
|
66
|
+
signing_key:
|
67
|
+
specification_version: 3
|
68
|
+
summary: A small library that lets you drive Chef's 'knife' programmatically
|
69
|
+
test_files: []
|