knife-hadoop 0.0.5 → 0.0.6
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/Gemfile.lock +6 -7
- data/README.md +8 -0
- data/lib/knife-hadoop/version.rb +1 -1
- metadata +1 -1
data/Gemfile.lock
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
knife-hadoop (0.0.
|
4
|
+
knife-hadoop (0.0.5)
|
5
5
|
chef
|
6
6
|
debugger
|
7
|
-
pg
|
8
7
|
rest-client
|
9
8
|
sequel
|
9
|
+
sqlite3
|
10
10
|
webhdfs
|
11
11
|
|
12
12
|
GEM
|
@@ -27,13 +27,13 @@ GEM
|
|
27
27
|
rest-client (>= 1.0.4, < 1.7.0)
|
28
28
|
yajl-ruby (~> 1.1)
|
29
29
|
columnize (0.3.6)
|
30
|
-
debugger (1.3.
|
30
|
+
debugger (1.3.3)
|
31
31
|
columnize (>= 0.3.1)
|
32
32
|
debugger-linecache (~> 1.1.1)
|
33
|
-
debugger-ruby_core_source (~> 1.
|
33
|
+
debugger-ruby_core_source (~> 1.2.0)
|
34
34
|
debugger-linecache (1.1.2)
|
35
35
|
debugger-ruby_core_source (>= 1.1.1)
|
36
|
-
debugger-ruby_core_source (1.
|
36
|
+
debugger-ruby_core_source (1.2.0)
|
37
37
|
erubis (2.7.0)
|
38
38
|
highline (1.6.15)
|
39
39
|
ipaddress (0.8.0)
|
@@ -59,16 +59,15 @@ GEM
|
|
59
59
|
mixlib-shellout
|
60
60
|
systemu
|
61
61
|
yajl-ruby
|
62
|
-
pg (0.14.1)
|
63
62
|
rest-client (1.6.7)
|
64
63
|
mime-types (>= 1.16)
|
65
64
|
sequel (3.44.0)
|
65
|
+
sqlite3 (1.3.7)
|
66
66
|
systemu (2.5.2)
|
67
67
|
webhdfs (0.5.1)
|
68
68
|
yajl-ruby (1.1.0)
|
69
69
|
|
70
70
|
PLATFORMS
|
71
|
-
java
|
72
71
|
ruby
|
73
72
|
|
74
73
|
DEPENDENCIES
|
data/README.md
CHANGED
@@ -3,8 +3,16 @@ Knife Hadoop
|
|
3
3
|
|
4
4
|
This is a Chef Knife plugin for Hadoop. This plugin gives knife the ability to provision, list, and manage Hadoop for Operators.
|
5
5
|
|
6
|
+
Version 0.0.6
|
7
|
+
|
8
|
+
Sqlite by default for the DB
|
9
|
+
|
6
10
|
Version 0.0.5
|
7
11
|
|
12
|
+
PostgreSQL and SQlite
|
13
|
+
|
14
|
+
|
15
|
+
|
8
16
|
Features:
|
9
17
|
|
10
18
|
HDFS APIs (currently supported) using the ruby webhdfs gem: https://github.com/kzk/webhdfs. Extensions to webhdfs will be hosted at
|
data/lib/knife-hadoop/version.rb
CHANGED