ironfan 5.0.11 → 6.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/.gitmodules +3 -0
- data/Gemfile +8 -26
- data/Gemfile.lock +38 -41
- data/NOTES-REALM.md +172 -0
- data/Rakefile +19 -77
- data/config/ubuntu12.04-ironfan.erb +7 -0
- data/ironfan.gemspec +28 -225
- data/lib/chef/cluster_knife.rb +26 -0
- data/lib/chef/knife/bootstrap/ubuntu12.04-ironfan.erb +7 -0
- data/lib/chef/knife/cluster_bootstrap.rb +1 -3
- data/lib/chef/knife/cluster_diff.rb +2 -8
- data/lib/chef/knife/cluster_kick.rb +1 -3
- data/lib/chef/knife/cluster_kill.rb +1 -2
- data/lib/chef/knife/cluster_launch.rb +17 -34
- data/lib/chef/knife/cluster_list.rb +6 -5
- data/lib/chef/knife/cluster_proxy.rb +1 -3
- data/lib/chef/knife/cluster_pry.rb +1 -2
- data/lib/chef/knife/cluster_show.rb +6 -7
- data/lib/chef/knife/cluster_ssh.rb +10 -8
- data/lib/chef/knife/cluster_start.rb +1 -2
- data/lib/chef/knife/cluster_stop.rb +1 -2
- data/lib/chef/knife/cluster_sync.rb +2 -3
- data/lib/chef/knife/ironfan_knife_common.rb +58 -18
- data/lib/chef/knife/ironfan_script.rb +0 -3
- data/lib/ironfan/broker/computer.rb +14 -11
- data/lib/ironfan/broker.rb +17 -12
- data/lib/ironfan/cookbook_requirements.rb +155 -0
- data/lib/ironfan/dsl/cloud.rb +2 -0
- data/lib/ironfan/dsl/cluster.rb +25 -15
- data/lib/ironfan/dsl/component.rb +12 -15
- data/lib/ironfan/dsl/compute.rb +10 -8
- data/lib/ironfan/dsl/ec2.rb +2 -26
- data/lib/ironfan/dsl/facet.rb +16 -14
- data/lib/ironfan/dsl/openstack.rb +147 -0
- data/lib/ironfan/dsl/realm.rb +23 -16
- data/lib/ironfan/dsl/security_group.rb +29 -0
- data/lib/ironfan/dsl/server.rb +14 -5
- data/lib/ironfan/dsl/static.rb +63 -0
- data/lib/ironfan/dsl/vsphere.rb +1 -0
- data/lib/ironfan/dsl.rb +1 -134
- data/lib/ironfan/headers.rb +19 -0
- data/lib/ironfan/provider/chef/node.rb +3 -2
- data/lib/ironfan/provider/ec2/machine.rb +10 -14
- data/lib/ironfan/provider/ec2/security_group.rb +58 -43
- data/lib/ironfan/provider/openstack/elastic_ip.rb +96 -0
- data/lib/ironfan/provider/openstack/keypair.rb +78 -0
- data/lib/ironfan/provider/openstack/machine.rb +371 -0
- data/lib/ironfan/provider/openstack/security_group.rb +224 -0
- data/lib/ironfan/provider/openstack.rb +69 -0
- data/lib/ironfan/provider/static/machine.rb +192 -0
- data/lib/ironfan/provider/static.rb +23 -0
- data/lib/ironfan/provider.rb +58 -1
- data/lib/ironfan/requirements.rb +17 -1
- data/lib/ironfan/version.rb +3 -0
- data/lib/ironfan.rb +107 -172
- data/spec/chef/cluster_bootstrap_spec.rb +2 -7
- data/spec/chef/cluster_launch_spec.rb +1 -2
- data/spec/fixtures/realms/samurai.rb +26 -0
- data/spec/integration/minimal-chef-repo/clusters/.gitkeep +0 -0
- data/spec/integration/minimal-chef-repo/config/.gitkeep +0 -0
- data/spec/integration/minimal-chef-repo/knife/credentials/.gitignore +1 -0
- data/spec/integration/minimal-chef-repo/knife/credentials/certificates/.gitkeep +0 -0
- data/spec/integration/minimal-chef-repo/knife/credentials/client_keys/.gitkeep +0 -0
- data/spec/integration/minimal-chef-repo/knife/credentials/data_bag_keys/.gitkeep +0 -0
- data/spec/integration/minimal-chef-repo/knife/credentials/ec2_certs/.gitkeep +0 -0
- data/spec/integration/minimal-chef-repo/knife/credentials/ec2_keys/.gitkeep +0 -0
- data/spec/integration/minimal-chef-repo/knife/credentials/ironfantest-validator.pem +27 -0
- data/spec/integration/minimal-chef-repo/knife/credentials/ironfantester.pem +27 -0
- data/spec/integration/minimal-chef-repo/tasks/.gitkeep +0 -0
- data/spec/ironfan/cluster_spec.rb +1 -2
- data/spec/ironfan/diff_spec.rb +0 -2
- data/spec/ironfan/dsl_spec.rb +6 -3
- data/spec/ironfan/ec2/cloud_provider_spec.rb +17 -18
- data/spec/ironfan/ec2/elb_spec.rb +44 -41
- data/spec/ironfan/ec2/security_group_spec.rb +45 -47
- data/spec/ironfan/manifest_spec.rb +0 -1
- data/spec/ironfan/plugin_spec.rb +55 -40
- data/spec/ironfan/realm_spec.rb +42 -30
- data/spec/spec_helper.rb +17 -31
- data/spec/{spec_helper → support}/dummy_chef.rb +0 -0
- data/spec/{spec_helper → support}/dummy_diff_drawer.rb +0 -0
- metadata +78 -155
- data/.rspec +0 -2
- data/.yardopts +0 -19
- data/VERSION +0 -2
- data/chefignore +0 -41
- data/notes/Future-development-proposals.md +0 -266
- data/notes/Home.md +0 -55
- data/notes/INSTALL-cloud_setup.md +0 -103
- data/notes/INSTALL.md +0 -134
- data/notes/Ironfan-Roadmap.md +0 -70
- data/notes/Upgrading-to-v4.md +0 -66
- data/notes/advanced-superpowers.md +0 -16
- data/notes/aws_servers.jpg +0 -0
- data/notes/aws_user_key.png +0 -0
- data/notes/cookbook-versioning.md +0 -11
- data/notes/core_concepts.md +0 -200
- data/notes/declaring_volumes.md +0 -3
- data/notes/design_notes-aspect_oriented_devops.md +0 -36
- data/notes/design_notes-ci_testing.md +0 -169
- data/notes/design_notes-cookbook_event_ordering.md +0 -249
- data/notes/design_notes-meta_discovery.md +0 -59
- data/notes/ec2-pricing_and_capacity.md +0 -75
- data/notes/ec2-pricing_and_capacity.numbers +0 -0
- data/notes/homebase-layout.txt +0 -102
- data/notes/knife-cluster-commands.md +0 -21
- data/notes/named-cloud-objects.md +0 -11
- data/notes/opscode_org_key.png +0 -0
- data/notes/opscode_user_key.png +0 -0
- data/notes/philosophy.md +0 -13
- data/notes/rake_tasks.md +0 -24
- data/notes/renamed-recipes.txt +0 -142
- data/notes/silverware.md +0 -85
- data/notes/style_guide.md +0 -300
- data/notes/tips_and_troubleshooting.md +0 -92
- data/notes/walkthrough-hadoop.md +0 -168
- data/notes/walkthrough-web.md +0 -166
- data/spec/fixtures/gunbai.rb +0 -24
- data/spec/test_config.rb +0 -20
- data/tasks/chef_config.rake +0 -38
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ironfan
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 6.0.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,46 +9,46 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-03-17 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: chef
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
|
-
- -
|
19
|
+
- - '='
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version:
|
21
|
+
version: 10.30.4
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
none: false
|
26
26
|
requirements:
|
27
|
-
- -
|
27
|
+
- - '='
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 10.30.4
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
31
|
name: fog
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
33
33
|
none: false
|
34
34
|
requirements:
|
35
|
-
- -
|
35
|
+
- - '='
|
36
36
|
- !ruby/object:Gem::Version
|
37
|
-
version:
|
37
|
+
version: 1.10.1
|
38
38
|
type: :runtime
|
39
39
|
prerelease: false
|
40
40
|
version_requirements: !ruby/object:Gem::Requirement
|
41
41
|
none: false
|
42
42
|
requirements:
|
43
|
-
- -
|
43
|
+
- - '='
|
44
44
|
- !ruby/object:Gem::Version
|
45
|
-
version:
|
45
|
+
version: 1.10.1
|
46
46
|
- !ruby/object:Gem::Dependency
|
47
47
|
name: excon
|
48
48
|
requirement: !ruby/object:Gem::Requirement
|
49
49
|
none: false
|
50
50
|
requirements:
|
51
|
-
- -
|
51
|
+
- - '='
|
52
52
|
- !ruby/object:Gem::Version
|
53
53
|
version: 0.21.0
|
54
54
|
type: :runtime
|
@@ -56,7 +56,7 @@ dependencies:
|
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
57
|
none: false
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - '='
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: 0.21.0
|
62
62
|
- !ruby/object:Gem::Dependency
|
@@ -64,23 +64,23 @@ dependencies:
|
|
64
64
|
requirement: !ruby/object:Gem::Requirement
|
65
65
|
none: false
|
66
66
|
requirements:
|
67
|
-
- -
|
67
|
+
- - '='
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version:
|
69
|
+
version: 0.2.4
|
70
70
|
type: :runtime
|
71
71
|
prerelease: false
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
73
73
|
none: false
|
74
74
|
requirements:
|
75
|
-
- -
|
75
|
+
- - '='
|
76
76
|
- !ruby/object:Gem::Version
|
77
|
-
version:
|
77
|
+
version: 0.2.4
|
78
78
|
- !ruby/object:Gem::Dependency
|
79
79
|
name: gorillib
|
80
80
|
requirement: !ruby/object:Gem::Requirement
|
81
81
|
none: false
|
82
82
|
requirements:
|
83
|
-
- -
|
83
|
+
- - '='
|
84
84
|
- !ruby/object:Gem::Version
|
85
85
|
version: 0.5.0
|
86
86
|
type: :runtime
|
@@ -88,7 +88,7 @@ dependencies:
|
|
88
88
|
version_requirements: !ruby/object:Gem::Requirement
|
89
89
|
none: false
|
90
90
|
requirements:
|
91
|
-
- -
|
91
|
+
- - '='
|
92
92
|
- !ruby/object:Gem::Version
|
93
93
|
version: 0.5.0
|
94
94
|
- !ruby/object:Gem::Dependency
|
@@ -96,23 +96,23 @@ dependencies:
|
|
96
96
|
requirement: !ruby/object:Gem::Requirement
|
97
97
|
none: false
|
98
98
|
requirements:
|
99
|
-
- -
|
99
|
+
- - '='
|
100
100
|
- !ruby/object:Gem::Version
|
101
|
-
version:
|
101
|
+
version: 1.8.1
|
102
102
|
type: :runtime
|
103
103
|
prerelease: false
|
104
104
|
version_requirements: !ruby/object:Gem::Requirement
|
105
105
|
none: false
|
106
106
|
requirements:
|
107
|
-
- -
|
107
|
+
- - '='
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version:
|
109
|
+
version: 1.8.1
|
110
110
|
- !ruby/object:Gem::Dependency
|
111
111
|
name: diff-lcs
|
112
112
|
requirement: !ruby/object:Gem::Requirement
|
113
113
|
none: false
|
114
114
|
requirements:
|
115
|
-
- -
|
115
|
+
- - '='
|
116
116
|
- !ruby/object:Gem::Version
|
117
117
|
version: 1.2.5
|
118
118
|
type: :runtime
|
@@ -120,7 +120,7 @@ dependencies:
|
|
120
120
|
version_requirements: !ruby/object:Gem::Requirement
|
121
121
|
none: false
|
122
122
|
requirements:
|
123
|
-
- -
|
123
|
+
- - '='
|
124
124
|
- !ruby/object:Gem::Version
|
125
125
|
version: 1.2.5
|
126
126
|
- !ruby/object:Gem::Dependency
|
@@ -155,109 +155,27 @@ dependencies:
|
|
155
155
|
- - ~>
|
156
156
|
- !ruby/object:Gem::Version
|
157
157
|
version: '1.0'
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
requirements:
|
163
|
-
- - ! '>='
|
164
|
-
- !ruby/object:Gem::Version
|
165
|
-
version: '0'
|
166
|
-
type: :development
|
167
|
-
prerelease: false
|
168
|
-
version_requirements: !ruby/object:Gem::Requirement
|
169
|
-
none: false
|
170
|
-
requirements:
|
171
|
-
- - ! '>='
|
172
|
-
- !ruby/object:Gem::Version
|
173
|
-
version: '0'
|
174
|
-
- !ruby/object:Gem::Dependency
|
175
|
-
name: rspec
|
176
|
-
requirement: !ruby/object:Gem::Requirement
|
177
|
-
none: false
|
178
|
-
requirements:
|
179
|
-
- - ~>
|
180
|
-
- !ruby/object:Gem::Version
|
181
|
-
version: '2.8'
|
182
|
-
type: :development
|
183
|
-
prerelease: false
|
184
|
-
version_requirements: !ruby/object:Gem::Requirement
|
185
|
-
none: false
|
186
|
-
requirements:
|
187
|
-
- - ~>
|
188
|
-
- !ruby/object:Gem::Version
|
189
|
-
version: '2.8'
|
190
|
-
- !ruby/object:Gem::Dependency
|
191
|
-
name: yard
|
192
|
-
requirement: !ruby/object:Gem::Requirement
|
193
|
-
none: false
|
194
|
-
requirements:
|
195
|
-
- - ! '>='
|
196
|
-
- !ruby/object:Gem::Version
|
197
|
-
version: '0.7'
|
198
|
-
type: :development
|
199
|
-
prerelease: false
|
200
|
-
version_requirements: !ruby/object:Gem::Requirement
|
201
|
-
none: false
|
202
|
-
requirements:
|
203
|
-
- - ! '>='
|
204
|
-
- !ruby/object:Gem::Version
|
205
|
-
version: '0.7'
|
206
|
-
- !ruby/object:Gem::Dependency
|
207
|
-
name: redcarpet
|
208
|
-
requirement: !ruby/object:Gem::Requirement
|
209
|
-
none: false
|
210
|
-
requirements:
|
211
|
-
- - ! '>='
|
212
|
-
- !ruby/object:Gem::Version
|
213
|
-
version: '2.1'
|
214
|
-
type: :development
|
215
|
-
prerelease: false
|
216
|
-
version_requirements: !ruby/object:Gem::Requirement
|
217
|
-
none: false
|
218
|
-
requirements:
|
219
|
-
- - ! '>='
|
220
|
-
- !ruby/object:Gem::Version
|
221
|
-
version: '2.1'
|
222
|
-
- !ruby/object:Gem::Dependency
|
223
|
-
name: oj
|
224
|
-
requirement: !ruby/object:Gem::Requirement
|
225
|
-
none: false
|
226
|
-
requirements:
|
227
|
-
- - ! '>='
|
228
|
-
- !ruby/object:Gem::Version
|
229
|
-
version: '1.2'
|
230
|
-
type: :development
|
231
|
-
prerelease: false
|
232
|
-
version_requirements: !ruby/object:Gem::Requirement
|
233
|
-
none: false
|
234
|
-
requirements:
|
235
|
-
- - ! '>='
|
236
|
-
- !ruby/object:Gem::Version
|
237
|
-
version: '1.2'
|
238
|
-
description: Ironfan allows you to orchestrate not just systems but clusters of machines.
|
239
|
-
It includes a powerful layer on top of knife and a collection of cloud cookbooks.
|
158
|
+
description: ! 'Ironfan allows you to orchestrate not just systems, but clusters of
|
159
|
+
machines.
|
160
|
+
|
161
|
+
It includes a powerful layer on top of knife and a collection of cloud cookbooks.'
|
240
162
|
email: coders@infochimps.com
|
241
163
|
executables: []
|
242
164
|
extensions: []
|
243
|
-
extra_rdoc_files:
|
244
|
-
- LICENSE.md
|
245
|
-
- README.md
|
165
|
+
extra_rdoc_files: []
|
246
166
|
files:
|
247
167
|
- .gitignore
|
248
|
-
- .
|
249
|
-
- .yardopts
|
168
|
+
- .gitmodules
|
250
169
|
- CHANGELOG.md
|
251
170
|
- ELB.md
|
252
171
|
- Gemfile
|
253
172
|
- Gemfile.lock
|
254
173
|
- Guardfile
|
255
174
|
- LICENSE.md
|
175
|
+
- NOTES-REALM.md
|
256
176
|
- README.md
|
257
177
|
- Rakefile
|
258
178
|
- TODO.md
|
259
|
-
- VERSION
|
260
|
-
- chefignore
|
261
179
|
- config/client.rb
|
262
180
|
- config/knife.bash
|
263
181
|
- config/knife.bash.README.md
|
@@ -265,6 +183,7 @@ files:
|
|
265
183
|
- config/ubuntu10.04-ironfan.erb
|
266
184
|
- config/ubuntu12.04-ironfan.erb
|
267
185
|
- ironfan.gemspec
|
186
|
+
- lib/chef/cluster_knife.rb
|
268
187
|
- lib/chef/knife/bootstrap/centos6.2-ironfan.erb
|
269
188
|
- lib/chef/knife/bootstrap/chef-full-ironfan.erb
|
270
189
|
- lib/chef/knife/bootstrap/rhel6.3-ironfan.erb
|
@@ -294,6 +213,7 @@ files:
|
|
294
213
|
- lib/ironfan/broker/computer.rb
|
295
214
|
- lib/ironfan/broker/drive.rb
|
296
215
|
- lib/ironfan/builder.rb
|
216
|
+
- lib/ironfan/cookbook_requirements.rb
|
297
217
|
- lib/ironfan/deprecated.rb
|
298
218
|
- lib/ironfan/dsl.rb
|
299
219
|
- lib/ironfan/dsl/cloud.rb
|
@@ -302,10 +222,13 @@ files:
|
|
302
222
|
- lib/ironfan/dsl/compute.rb
|
303
223
|
- lib/ironfan/dsl/ec2.rb
|
304
224
|
- lib/ironfan/dsl/facet.rb
|
225
|
+
- lib/ironfan/dsl/openstack.rb
|
305
226
|
- lib/ironfan/dsl/rds.rb
|
306
227
|
- lib/ironfan/dsl/realm.rb
|
307
228
|
- lib/ironfan/dsl/role.rb
|
229
|
+
- lib/ironfan/dsl/security_group.rb
|
308
230
|
- lib/ironfan/dsl/server.rb
|
231
|
+
- lib/ironfan/dsl/static.rb
|
309
232
|
- lib/ironfan/dsl/virtualbox.rb
|
310
233
|
- lib/ironfan/dsl/volume.rb
|
311
234
|
- lib/ironfan/dsl/vsphere.rb
|
@@ -325,58 +248,46 @@ files:
|
|
325
248
|
- lib/ironfan/provider/ec2/machine.rb
|
326
249
|
- lib/ironfan/provider/ec2/placement_group.rb
|
327
250
|
- lib/ironfan/provider/ec2/security_group.rb
|
251
|
+
- lib/ironfan/provider/openstack.rb
|
252
|
+
- lib/ironfan/provider/openstack/elastic_ip.rb
|
253
|
+
- lib/ironfan/provider/openstack/keypair.rb
|
254
|
+
- lib/ironfan/provider/openstack/machine.rb
|
255
|
+
- lib/ironfan/provider/openstack/security_group.rb
|
328
256
|
- lib/ironfan/provider/rds.rb
|
329
257
|
- lib/ironfan/provider/rds/machine.rb
|
330
258
|
- lib/ironfan/provider/rds/security_group.rb
|
259
|
+
- lib/ironfan/provider/static.rb
|
260
|
+
- lib/ironfan/provider/static/machine.rb
|
331
261
|
- lib/ironfan/provider/virtualbox.rb
|
332
262
|
- lib/ironfan/provider/virtualbox/machine.rb
|
333
263
|
- lib/ironfan/provider/vsphere.rb
|
334
264
|
- lib/ironfan/provider/vsphere/keypair.rb
|
335
265
|
- lib/ironfan/provider/vsphere/machine.rb
|
336
266
|
- lib/ironfan/requirements.rb
|
337
|
-
-
|
338
|
-
- notes/Home.md
|
339
|
-
- notes/INSTALL-cloud_setup.md
|
340
|
-
- notes/INSTALL.md
|
341
|
-
- notes/Ironfan-Roadmap.md
|
342
|
-
- notes/Upgrading-to-v4.md
|
343
|
-
- notes/advanced-superpowers.md
|
344
|
-
- notes/aws_servers.jpg
|
345
|
-
- notes/aws_user_key.png
|
346
|
-
- notes/cookbook-versioning.md
|
347
|
-
- notes/core_concepts.md
|
348
|
-
- notes/declaring_volumes.md
|
349
|
-
- notes/design_notes-aspect_oriented_devops.md
|
350
|
-
- notes/design_notes-ci_testing.md
|
351
|
-
- notes/design_notes-cookbook_event_ordering.md
|
352
|
-
- notes/design_notes-meta_discovery.md
|
353
|
-
- notes/ec2-pricing_and_capacity.md
|
354
|
-
- notes/ec2-pricing_and_capacity.numbers
|
355
|
-
- notes/homebase-layout.txt
|
356
|
-
- notes/knife-cluster-commands.md
|
357
|
-
- notes/named-cloud-objects.md
|
358
|
-
- notes/opscode_org_key.png
|
359
|
-
- notes/opscode_user_key.png
|
360
|
-
- notes/philosophy.md
|
361
|
-
- notes/rake_tasks.md
|
362
|
-
- notes/renamed-recipes.txt
|
363
|
-
- notes/silverware.md
|
364
|
-
- notes/style_guide.md
|
365
|
-
- notes/tips_and_troubleshooting.md
|
366
|
-
- notes/walkthrough-hadoop.md
|
367
|
-
- notes/walkthrough-web.md
|
267
|
+
- lib/ironfan/version.rb
|
368
268
|
- spec/chef/cluster_bootstrap_spec.rb
|
369
269
|
- spec/chef/cluster_launch_spec.rb
|
370
270
|
- spec/fixtures/ec2/elb/snakeoil.crt
|
371
271
|
- spec/fixtures/ec2/elb/snakeoil.key
|
372
|
-
- spec/fixtures/gunbai.rb
|
373
272
|
- spec/fixtures/gunbai_slice.json
|
374
273
|
- spec/fixtures/knife/knife.rb
|
274
|
+
- spec/fixtures/realms/samurai.rb
|
375
275
|
- spec/integration/minimal-chef-repo/chefignore
|
276
|
+
- spec/integration/minimal-chef-repo/clusters/.gitkeep
|
277
|
+
- spec/integration/minimal-chef-repo/config/.gitkeep
|
376
278
|
- spec/integration/minimal-chef-repo/environments/_default.json
|
279
|
+
- spec/integration/minimal-chef-repo/knife/credentials/.gitignore
|
280
|
+
- spec/integration/minimal-chef-repo/knife/credentials/certificates/.gitkeep
|
281
|
+
- spec/integration/minimal-chef-repo/knife/credentials/client_keys/.gitkeep
|
282
|
+
- spec/integration/minimal-chef-repo/knife/credentials/data_bag_keys/.gitkeep
|
283
|
+
- spec/integration/minimal-chef-repo/knife/credentials/ec2_certs/.gitkeep
|
284
|
+
- spec/integration/minimal-chef-repo/knife/credentials/ec2_keys/.gitkeep
|
285
|
+
- spec/integration/minimal-chef-repo/knife/credentials/ironfantest-validator.pem
|
286
|
+
- spec/integration/minimal-chef-repo/knife/credentials/ironfantester.pem
|
377
287
|
- spec/integration/minimal-chef-repo/knife/credentials/knife-org.rb
|
378
288
|
- spec/integration/minimal-chef-repo/knife/knife.rb
|
379
289
|
- spec/integration/minimal-chef-repo/roles/systemwide.rb
|
290
|
+
- spec/integration/minimal-chef-repo/tasks/.gitkeep
|
380
291
|
- spec/integration/spec/elb_build_spec.rb
|
381
292
|
- spec/integration/spec/simple_cluster_spec.rb
|
382
293
|
- spec/integration/spec_helper.rb
|
@@ -391,10 +302,8 @@ files:
|
|
391
302
|
- spec/ironfan/plugin_spec.rb
|
392
303
|
- spec/ironfan/realm_spec.rb
|
393
304
|
- spec/spec_helper.rb
|
394
|
-
- spec/
|
395
|
-
- spec/
|
396
|
-
- spec/test_config.rb
|
397
|
-
- tasks/chef_config.rake
|
305
|
+
- spec/support/dummy_chef.rb
|
306
|
+
- spec/support/dummy_diff_drawer.rb
|
398
307
|
homepage: http://infochimps.com/labs
|
399
308
|
licenses:
|
400
309
|
- apachev2
|
@@ -410,13 +319,16 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
410
319
|
version: '0'
|
411
320
|
segments:
|
412
321
|
- 0
|
413
|
-
hash: -
|
322
|
+
hash: -4011394915460401871
|
414
323
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
415
324
|
none: false
|
416
325
|
requirements:
|
417
326
|
- - ! '>='
|
418
327
|
- !ruby/object:Gem::Version
|
419
328
|
version: '0'
|
329
|
+
segments:
|
330
|
+
- 0
|
331
|
+
hash: -4011394915460401871
|
420
332
|
requirements: []
|
421
333
|
rubyforge_project:
|
422
334
|
rubygems_version: 1.8.25
|
@@ -428,18 +340,29 @@ test_files:
|
|
428
340
|
- spec/chef/cluster_launch_spec.rb
|
429
341
|
- spec/fixtures/ec2/elb/snakeoil.crt
|
430
342
|
- spec/fixtures/ec2/elb/snakeoil.key
|
431
|
-
- spec/fixtures/gunbai.rb
|
432
343
|
- spec/fixtures/gunbai_slice.json
|
433
344
|
- spec/fixtures/knife/knife.rb
|
345
|
+
- spec/fixtures/realms/samurai.rb
|
434
346
|
- spec/integration/minimal-chef-repo/chefignore
|
347
|
+
- spec/integration/minimal-chef-repo/clusters/.gitkeep
|
348
|
+
- spec/integration/minimal-chef-repo/config/.gitkeep
|
435
349
|
- spec/integration/minimal-chef-repo/environments/_default.json
|
350
|
+
- spec/integration/minimal-chef-repo/knife/credentials/.gitignore
|
351
|
+
- spec/integration/minimal-chef-repo/knife/credentials/certificates/.gitkeep
|
352
|
+
- spec/integration/minimal-chef-repo/knife/credentials/client_keys/.gitkeep
|
353
|
+
- spec/integration/minimal-chef-repo/knife/credentials/data_bag_keys/.gitkeep
|
354
|
+
- spec/integration/minimal-chef-repo/knife/credentials/ec2_certs/.gitkeep
|
355
|
+
- spec/integration/minimal-chef-repo/knife/credentials/ec2_keys/.gitkeep
|
356
|
+
- spec/integration/minimal-chef-repo/knife/credentials/ironfantest-validator.pem
|
357
|
+
- spec/integration/minimal-chef-repo/knife/credentials/ironfantester.pem
|
436
358
|
- spec/integration/minimal-chef-repo/knife/credentials/knife-org.rb
|
437
359
|
- spec/integration/minimal-chef-repo/knife/knife.rb
|
438
360
|
- spec/integration/minimal-chef-repo/roles/systemwide.rb
|
361
|
+
- spec/integration/minimal-chef-repo/tasks/.gitkeep
|
439
362
|
- spec/integration/spec/elb_build_spec.rb
|
440
363
|
- spec/integration/spec/simple_cluster_spec.rb
|
441
|
-
- spec/integration/spec_helper/launch_cluster.rb
|
442
364
|
- spec/integration/spec_helper.rb
|
365
|
+
- spec/integration/spec_helper/launch_cluster.rb
|
443
366
|
- spec/ironfan/cluster_spec.rb
|
444
367
|
- spec/ironfan/diff_spec.rb
|
445
368
|
- spec/ironfan/dsl_spec.rb
|
@@ -449,7 +372,7 @@ test_files:
|
|
449
372
|
- spec/ironfan/manifest_spec.rb
|
450
373
|
- spec/ironfan/plugin_spec.rb
|
451
374
|
- spec/ironfan/realm_spec.rb
|
452
|
-
- spec/spec_helper/dummy_chef.rb
|
453
|
-
- spec/spec_helper/dummy_diff_drawer.rb
|
454
375
|
- spec/spec_helper.rb
|
455
|
-
- spec/
|
376
|
+
- spec/support/dummy_chef.rb
|
377
|
+
- spec/support/dummy_diff_drawer.rb
|
378
|
+
has_rdoc:
|
data/.rspec
DELETED
data/.yardopts
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
--readme README.md
|
2
|
-
--markup markdown
|
3
|
-
-
|
4
|
-
VERSION
|
5
|
-
CHANGELOG.md
|
6
|
-
LICENSE.md
|
7
|
-
README.md
|
8
|
-
notes/INSTALL.md
|
9
|
-
notes/core_concepts.md
|
10
|
-
notes/knife-cluster-commands.md
|
11
|
-
notes/philosophy.md
|
12
|
-
notes/silverware.md
|
13
|
-
notes/style_guide.md
|
14
|
-
notes/tips_and_troubleshooting.md
|
15
|
-
notes/walkthrough-hadoop.md
|
16
|
-
notes/homebase-layout.txt
|
17
|
-
|
18
|
-
notes/*.md
|
19
|
-
notes/*.txt
|
data/VERSION
DELETED
data/chefignore
DELETED
@@ -1,41 +0,0 @@
|
|
1
|
-
# Put files/directories that should be ignored in this file.
|
2
|
-
# Lines that start with '# ' are comments.
|
3
|
-
|
4
|
-
## OS
|
5
|
-
.DS_Store
|
6
|
-
Icon?
|
7
|
-
nohup.out
|
8
|
-
|
9
|
-
## EDITORS
|
10
|
-
\#*
|
11
|
-
.#*
|
12
|
-
*~
|
13
|
-
*.sw[a-z]
|
14
|
-
*.bak
|
15
|
-
REVISION
|
16
|
-
TAGS*
|
17
|
-
tmtags
|
18
|
-
*_flymake.*
|
19
|
-
*_flymake
|
20
|
-
*.tmproj
|
21
|
-
.project
|
22
|
-
.settings
|
23
|
-
mkmf.log
|
24
|
-
|
25
|
-
## COMPILED
|
26
|
-
a.out
|
27
|
-
*.o
|
28
|
-
*.pyc
|
29
|
-
*.so
|
30
|
-
|
31
|
-
## OTHER SCM
|
32
|
-
*/.bzr/*
|
33
|
-
*/.hg/*
|
34
|
-
*/.svn/*
|
35
|
-
|
36
|
-
## Don't send rspecs up in cookbook
|
37
|
-
.watchr
|
38
|
-
.rspec
|
39
|
-
spec/*
|
40
|
-
spec/fixtures/*
|
41
|
-
|