knife-zero 1.3.0 → 1.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +6 -0
- data/lib/chef/knife/zero_base.rb +6 -0
- data/lib/chef/knife/zero_chef_client.rb +2 -1
- data/lib/knife-zero/bootstrap_ssh.rb +2 -1
- data/lib/knife-zero/core/bootstrap_context.rb +2 -1
- data/lib/knife-zero/helper.rb +13 -0
- data/lib/knife-zero/version.rb +1 -1
- data/test/knife-zero/test_versioin.rb +1 -1
- metadata +3 -3
- data/lib/knife-zero/common.rb +0 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 620915bb2600d2bff34062afc9f5aed680043159
|
4
|
+
data.tar.gz: c01f7d554cbb73f3ed02dd5e2f03eff8e9f26231
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0d1659ce376fd1969d2689082e7e6a1bc6eaee0653f7665b722325228c9cb592a6d3c7792234d099ba3e64556cac8f6399e079799eb691d0e955a8220d1c694
|
7
|
+
data.tar.gz: 9bc35ec066cc9707d6664623d9184d79dc2a796f94c3c2aa8b9e5505d3bb0b310b1558bd7cf8f1662af1cb942c83ea6c2906f192f08e31a3f22471c985e82c11
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# Knife-Plugin Zero
|
2
2
|
|
3
|
+
[![Circle CI](https://circleci.com/gh/higanworks/knife-zero.svg?style=svg)](https://circleci.com/gh/higanworks/knife-zero)
|
4
|
+
|
3
5
|
[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/higanworks/knife-zero?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
4
6
|
|
5
7
|
[![Gem Version](https://badge.fury.io/rb/knife-zero.svg)](http://badge.fury.io/rb/knife-zero)
|
@@ -244,6 +246,10 @@ Connecting to 192.168.33.10
|
|
244
246
|
|
245
247
|
Run zero chef_client with `-a name` option.
|
246
248
|
|
249
|
+
> Caution: `-a(--attribute) name` option doesn't work since chef 12.1.0.
|
250
|
+
> Please use specific attribute until fix it.
|
251
|
+
> I've already create PR for fix. Please wait for merge to use name attribute. https://github.com/chef/chef/pull/3195
|
252
|
+
|
247
253
|
```
|
248
254
|
$ knife zero chef_client "name:*" -x vagrant -i ./.vagrant/machines/default/virtualbox/private_key --sudo -a name
|
249
255
|
WARN: No cookbooks directory found at or above current directory. Assuming /Users/sawanoboriyu/worktemp/knife-zero-vagrant.
|
data/lib/chef/knife/zero_base.rb
CHANGED
@@ -57,6 +57,12 @@ class Chef
|
|
57
57
|
:description => 'Enable whyrun mode on chef-client run at remote node.',
|
58
58
|
:boolean => true
|
59
59
|
|
60
|
+
option :remote_chef_zero_port,
|
61
|
+
:long => "--remote-chef-zero-port PORT",
|
62
|
+
:description => "Listen port on remote",
|
63
|
+
:default => nil,
|
64
|
+
:proc => Proc.new { |key| Chef::Config[:remote_chef_zero_port] = key.to_i }
|
65
|
+
|
60
66
|
end
|
61
67
|
end
|
62
68
|
|
@@ -9,6 +9,7 @@ class Chef
|
|
9
9
|
deps do
|
10
10
|
require 'chef/run_list/run_list_item'
|
11
11
|
Chef::Knife::BootstrapSsh.load_deps
|
12
|
+
require "knife-zero/helper"
|
12
13
|
end
|
13
14
|
|
14
15
|
banner "knife zero chef_client QUERY (options)"
|
@@ -49,7 +50,7 @@ class Chef
|
|
49
50
|
client_path = @config[:chef_client_path] ? "#{client_path}#{@config[:chef_client_path]}" : "#{client_path}chef-client"
|
50
51
|
s = "#{client_path}"
|
51
52
|
s << ' -l debug' if @config[:verbosity] and @config[:verbosity] >= 2
|
52
|
-
s << " -S http://127.0.0.1
|
53
|
+
s << " -S http://127.0.0.1:#{::Knife::Zero::Helper.zero_remote_port}"
|
53
54
|
s << " -o #{@config[:override_runlist]}" if @config[:override_runlist]
|
54
55
|
s << " -W" if @config[:why_run]
|
55
56
|
s
|
@@ -6,6 +6,7 @@ class Chef
|
|
6
6
|
deps do
|
7
7
|
Chef::Knife::Ssh.load_deps
|
8
8
|
require "knife-zero/net-ssh-multi-patch"
|
9
|
+
require "knife-zero/helper"
|
9
10
|
end
|
10
11
|
|
11
12
|
def ssh_command(command, subsession=nil)
|
@@ -18,7 +19,7 @@ class Chef
|
|
18
19
|
'127.0.0.1'
|
19
20
|
(subsession || session).servers.each do |server|
|
20
21
|
session = server.session(true)
|
21
|
-
session.forward.remote(chef_zero_port, chef_zero_host,
|
22
|
+
session.forward.remote(chef_zero_port, chef_zero_host, ::Knife::Zero::Helper.zero_remote_port)
|
22
23
|
end
|
23
24
|
super
|
24
25
|
rescue => e
|
@@ -1,4 +1,5 @@
|
|
1
1
|
require 'chef/knife/core/bootstrap_context'
|
2
|
+
require "knife-zero/helper"
|
2
3
|
|
3
4
|
class Chef
|
4
5
|
class Knife
|
@@ -21,7 +22,7 @@ class Chef
|
|
21
22
|
s = "#{client_path} -j /etc/chef/first-boot.json"
|
22
23
|
s << ' -l debug' if @config[:verbosity] and @config[:verbosity] >= 2
|
23
24
|
s << " -E #{bootstrap_environment}" if ::Chef::VERSION.to_f != 0.9 # only use the -E option on Chef 0.10+
|
24
|
-
s << " -S http://127.0.0.1:#{
|
25
|
+
s << " -S http://127.0.0.1:#{::Knife::Zero::Helper.zero_remote_port}"
|
25
26
|
s << " -W" if @config[:why_run]
|
26
27
|
s
|
27
28
|
else
|
@@ -0,0 +1,13 @@
|
|
1
|
+
module Knife
|
2
|
+
module Zero
|
3
|
+
module Helper
|
4
|
+
def self.zero_remote_port
|
5
|
+
return ::Chef::Config[:remote_chef_zero_port] if ::Chef::Config[:remote_chef_zero_port]
|
6
|
+
chef_zero_port = ::Chef::Config[:chef_zero_port] ||
|
7
|
+
::Chef::Config[:knife][:chef_zero_port] ||
|
8
|
+
8889
|
9
|
+
chef_zero_port + 10000
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
data/lib/knife-zero/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: knife-zero
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sawanoboly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-04-
|
11
|
+
date: 2015-04-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -172,8 +172,8 @@ files:
|
|
172
172
|
- lib/chef/knife/zero_chef_client.rb
|
173
173
|
- lib/chef/knife/zero_diagnose.rb
|
174
174
|
- lib/knife-zero/bootstrap_ssh.rb
|
175
|
-
- lib/knife-zero/common.rb
|
176
175
|
- lib/knife-zero/core/bootstrap_context.rb
|
176
|
+
- lib/knife-zero/helper.rb
|
177
177
|
- lib/knife-zero/net-ssh-multi-patch.rb
|
178
178
|
- lib/knife-zero/version.rb
|
179
179
|
- test/chef/knife/test_zero_bootstrap.rb
|