ironfan 4.12.3 → 5.0.0
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 +1 -0
- data/Gemfile.lock +9 -8
- data/VERSION +1 -1
- data/ironfan.gemspec +19 -4
- data/lib/chef/knife/cluster_diff.rb +95 -0
- data/lib/chef/knife/cluster_launch.rb +1 -1
- data/lib/chef/knife/cluster_list.rb +4 -2
- data/lib/chef/knife/cluster_pry.rb +1 -1
- data/lib/chef/knife/cluster_show.rb +8 -5
- data/lib/chef/knife/cluster_ssh.rb +1 -1
- data/lib/chef/knife/environment_from_realm.rb +60 -0
- data/lib/chef/knife/ironfan_knife_common.rb +22 -0
- data/lib/chef/knife/ironfan_script.rb +1 -1
- data/lib/gorillib/diff.rb +266 -0
- data/lib/gorillib/nil_check_delegate.rb +30 -0
- data/lib/ironfan/broker/computer.rb +3 -0
- data/lib/ironfan/dsl/cluster.rb +10 -0
- data/lib/ironfan/dsl/component.rb +157 -0
- data/lib/ironfan/dsl/compute.rb +21 -0
- data/lib/ironfan/dsl/facet.rb +11 -0
- data/lib/ironfan/dsl/realm.rb +17 -14
- data/lib/ironfan/dsl/server.rb +287 -0
- data/lib/ironfan/dsl/volume.rb +1 -0
- data/lib/ironfan/dsl.rb +133 -1
- data/lib/ironfan/headers.rb +7 -0
- data/lib/ironfan/plugin/base.rb +89 -0
- data/lib/ironfan/provider/ec2/security_group.rb +2 -1
- data/lib/ironfan/requirements.rb +6 -0
- data/lib/ironfan.rb +21 -4
- data/spec/ironfan/diff_spec.rb +78 -0
- data/spec/ironfan/dsl_spec.rb +115 -0
- data/spec/ironfan/manifest_spec.rb +29 -0
- data/spec/ironfan/plugin_spec.rb +138 -0
- data/spec/ironfan/realm_spec.rb +137 -0
- data/spec/spec_helper/dummy_diff_drawer.rb +94 -0
- data/spec/spec_helper.rb +15 -0
- metadata +53 -19
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: 5.0.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-12-11 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: chef
|
@@ -107,6 +107,22 @@ dependencies:
|
|
107
107
|
- - ! '>='
|
108
108
|
- !ruby/object:Gem::Version
|
109
109
|
version: '0'
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: diff-lcs
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
none: false
|
114
|
+
requirements:
|
115
|
+
- - ~>
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: 1.2.5
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
122
|
+
requirements:
|
123
|
+
- - ~>
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: 1.2.5
|
110
126
|
- !ruby/object:Gem::Dependency
|
111
127
|
name: json
|
112
128
|
requirement: !ruby/object:Gem::Requirement
|
@@ -255,6 +271,7 @@ files:
|
|
255
271
|
- lib/chef/knife/bootstrap/ubuntu10.04-ironfan.erb
|
256
272
|
- lib/chef/knife/bootstrap/ubuntu12.04-ironfan.erb
|
257
273
|
- lib/chef/knife/cluster_bootstrap.rb
|
274
|
+
- lib/chef/knife/cluster_diff.rb
|
258
275
|
- lib/chef/knife/cluster_kick.rb
|
259
276
|
- lib/chef/knife/cluster_kill.rb
|
260
277
|
- lib/chef/knife/cluster_launch.rb
|
@@ -266,8 +283,11 @@ files:
|
|
266
283
|
- lib/chef/knife/cluster_start.rb
|
267
284
|
- lib/chef/knife/cluster_stop.rb
|
268
285
|
- lib/chef/knife/cluster_sync.rb
|
286
|
+
- lib/chef/knife/environment_from_realm.rb
|
269
287
|
- lib/chef/knife/ironfan_knife_common.rb
|
270
288
|
- lib/chef/knife/ironfan_script.rb
|
289
|
+
- lib/gorillib/diff.rb
|
290
|
+
- lib/gorillib/nil_check_delegate.rb
|
271
291
|
- lib/gorillib/resolution.rb
|
272
292
|
- lib/ironfan.rb
|
273
293
|
- lib/ironfan/broker.rb
|
@@ -278,6 +298,7 @@ files:
|
|
278
298
|
- lib/ironfan/dsl.rb
|
279
299
|
- lib/ironfan/dsl/cloud.rb
|
280
300
|
- lib/ironfan/dsl/cluster.rb
|
301
|
+
- lib/ironfan/dsl/component.rb
|
281
302
|
- lib/ironfan/dsl/compute.rb
|
282
303
|
- lib/ironfan/dsl/ec2.rb
|
283
304
|
- lib/ironfan/dsl/facet.rb
|
@@ -289,6 +310,7 @@ files:
|
|
289
310
|
- lib/ironfan/dsl/volume.rb
|
290
311
|
- lib/ironfan/dsl/vsphere.rb
|
291
312
|
- lib/ironfan/headers.rb
|
313
|
+
- lib/ironfan/plugin/base.rb
|
292
314
|
- lib/ironfan/provider.rb
|
293
315
|
- lib/ironfan/provider/chef.rb
|
294
316
|
- lib/ironfan/provider/chef/client.rb
|
@@ -360,11 +382,17 @@ files:
|
|
360
382
|
- spec/integration/spec_helper.rb
|
361
383
|
- spec/integration/spec_helper/launch_cluster.rb
|
362
384
|
- spec/ironfan/cluster_spec.rb
|
385
|
+
- spec/ironfan/diff_spec.rb
|
386
|
+
- spec/ironfan/dsl_spec.rb
|
363
387
|
- spec/ironfan/ec2/cloud_provider_spec.rb
|
364
388
|
- spec/ironfan/ec2/elb_spec.rb
|
365
389
|
- spec/ironfan/ec2/security_group_spec.rb
|
390
|
+
- spec/ironfan/manifest_spec.rb
|
391
|
+
- spec/ironfan/plugin_spec.rb
|
392
|
+
- spec/ironfan/realm_spec.rb
|
366
393
|
- spec/spec_helper.rb
|
367
394
|
- spec/spec_helper/dummy_chef.rb
|
395
|
+
- spec/spec_helper/dummy_diff_drawer.rb
|
368
396
|
- spec/test_config.rb
|
369
397
|
- tasks/chef_config.rake
|
370
398
|
homepage: http://infochimps.com/labs
|
@@ -382,7 +410,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
382
410
|
version: '0'
|
383
411
|
segments:
|
384
412
|
- 0
|
385
|
-
hash:
|
413
|
+
hash: 2822734161449880637
|
386
414
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
387
415
|
none: false
|
388
416
|
requirements:
|
@@ -391,31 +419,37 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
391
419
|
version: '0'
|
392
420
|
requirements: []
|
393
421
|
rubyforge_project:
|
394
|
-
rubygems_version: 1.8.
|
422
|
+
rubygems_version: 1.8.25
|
395
423
|
signing_key:
|
396
424
|
specification_version: 3
|
397
425
|
summary: Infochimps' lightweight cloud orchestration toolkit, built on top of Chef.
|
398
426
|
test_files:
|
399
|
-
- spec/
|
400
|
-
- spec/
|
427
|
+
- spec/chef/cluster_bootstrap_spec.rb
|
428
|
+
- spec/chef/cluster_launch_spec.rb
|
401
429
|
- spec/fixtures/ec2/elb/snakeoil.crt
|
430
|
+
- spec/fixtures/ec2/elb/snakeoil.key
|
431
|
+
- spec/fixtures/gunbai.rb
|
402
432
|
- spec/fixtures/gunbai_slice.json
|
403
433
|
- spec/fixtures/knife/knife.rb
|
404
|
-
- spec/test_config.rb
|
405
|
-
- spec/ironfan/ec2/cloud_provider_spec.rb
|
406
|
-
- spec/ironfan/ec2/elb_spec.rb
|
407
|
-
- spec/ironfan/ec2/security_group_spec.rb
|
408
|
-
- spec/ironfan/cluster_spec.rb
|
409
|
-
- spec/spec_helper.rb
|
410
|
-
- spec/spec_helper/dummy_chef.rb
|
411
|
-
- spec/chef/cluster_bootstrap_spec.rb
|
412
|
-
- spec/chef/cluster_launch_spec.rb
|
413
|
-
- spec/integration/spec/elb_build_spec.rb
|
414
|
-
- spec/integration/spec/simple_cluster_spec.rb
|
415
|
-
- spec/integration/spec_helper.rb
|
416
434
|
- spec/integration/minimal-chef-repo/chefignore
|
417
|
-
- spec/integration/minimal-chef-repo/roles/systemwide.rb
|
418
435
|
- spec/integration/minimal-chef-repo/environments/_default.json
|
419
436
|
- spec/integration/minimal-chef-repo/knife/credentials/knife-org.rb
|
420
437
|
- spec/integration/minimal-chef-repo/knife/knife.rb
|
438
|
+
- spec/integration/minimal-chef-repo/roles/systemwide.rb
|
439
|
+
- spec/integration/spec/elb_build_spec.rb
|
440
|
+
- spec/integration/spec/simple_cluster_spec.rb
|
421
441
|
- spec/integration/spec_helper/launch_cluster.rb
|
442
|
+
- spec/integration/spec_helper.rb
|
443
|
+
- spec/ironfan/cluster_spec.rb
|
444
|
+
- spec/ironfan/diff_spec.rb
|
445
|
+
- spec/ironfan/dsl_spec.rb
|
446
|
+
- spec/ironfan/ec2/cloud_provider_spec.rb
|
447
|
+
- spec/ironfan/ec2/elb_spec.rb
|
448
|
+
- spec/ironfan/ec2/security_group_spec.rb
|
449
|
+
- spec/ironfan/manifest_spec.rb
|
450
|
+
- spec/ironfan/plugin_spec.rb
|
451
|
+
- spec/ironfan/realm_spec.rb
|
452
|
+
- spec/spec_helper/dummy_chef.rb
|
453
|
+
- spec/spec_helper/dummy_diff_drawer.rb
|
454
|
+
- spec/spec_helper.rb
|
455
|
+
- spec/test_config.rb
|