ironfan 4.3.4 → 4.4.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.
Files changed (66) hide show
  1. data/CHANGELOG.md +7 -0
  2. data/ELB.md +121 -0
  3. data/Gemfile +1 -0
  4. data/Rakefile +4 -0
  5. data/VERSION +1 -1
  6. data/ironfan.gemspec +48 -3
  7. data/lib/chef/knife/cluster_launch.rb +5 -0
  8. data/lib/chef/knife/cluster_proxy.rb +3 -3
  9. data/lib/chef/knife/cluster_sync.rb +4 -0
  10. data/lib/chef/knife/ironfan_knife_common.rb +17 -6
  11. data/lib/chef/knife/ironfan_script.rb +29 -11
  12. data/lib/ironfan.rb +2 -2
  13. data/lib/ironfan/broker/computer.rb +8 -3
  14. data/lib/ironfan/dsl/ec2.rb +133 -2
  15. data/lib/ironfan/headers.rb +4 -0
  16. data/lib/ironfan/provider.rb +48 -3
  17. data/lib/ironfan/provider/ec2.rb +23 -8
  18. data/lib/ironfan/provider/ec2/elastic_load_balancer.rb +239 -0
  19. data/lib/ironfan/provider/ec2/iam_server_certificate.rb +101 -0
  20. data/lib/ironfan/provider/ec2/machine.rb +8 -0
  21. data/lib/ironfan/provider/ec2/security_group.rb +3 -5
  22. data/lib/ironfan/requirements.rb +2 -0
  23. data/notes/Home.md +45 -0
  24. data/notes/INSTALL-cloud_setup.md +103 -0
  25. data/notes/INSTALL.md +134 -0
  26. data/notes/Ironfan-Roadmap.md +70 -0
  27. data/notes/advanced-superpowers.md +16 -0
  28. data/notes/aws_servers.jpg +0 -0
  29. data/notes/aws_user_key.png +0 -0
  30. data/notes/cookbook-versioning.md +11 -0
  31. data/notes/core_concepts.md +200 -0
  32. data/notes/declaring_volumes.md +3 -0
  33. data/notes/design_notes-aspect_oriented_devops.md +36 -0
  34. data/notes/design_notes-ci_testing.md +169 -0
  35. data/notes/design_notes-cookbook_event_ordering.md +249 -0
  36. data/notes/design_notes-meta_discovery.md +59 -0
  37. data/notes/ec2-pricing_and_capacity.md +69 -0
  38. data/notes/ec2-pricing_and_capacity.numbers +0 -0
  39. data/notes/homebase-layout.txt +102 -0
  40. data/notes/knife-cluster-commands.md +18 -0
  41. data/notes/named-cloud-objects.md +11 -0
  42. data/notes/opscode_org_key.png +0 -0
  43. data/notes/opscode_user_key.png +0 -0
  44. data/notes/philosophy.md +13 -0
  45. data/notes/rake_tasks.md +24 -0
  46. data/notes/renamed-recipes.txt +142 -0
  47. data/notes/silverware.md +85 -0
  48. data/notes/style_guide.md +300 -0
  49. data/notes/tips_and_troubleshooting.md +92 -0
  50. data/notes/version-3_2.md +273 -0
  51. data/notes/walkthrough-hadoop.md +168 -0
  52. data/notes/walkthrough-web.md +166 -0
  53. data/spec/fixtures/ec2/elb/snakeoil.crt +35 -0
  54. data/spec/fixtures/ec2/elb/snakeoil.key +51 -0
  55. data/spec/integration/minimal-chef-repo/chefignore +41 -0
  56. data/spec/integration/minimal-chef-repo/environments/_default.json +12 -0
  57. data/spec/integration/minimal-chef-repo/knife/credentials/knife-org.rb +19 -0
  58. data/spec/integration/minimal-chef-repo/knife/credentials/knife-user-ironfantester.rb +9 -0
  59. data/spec/integration/minimal-chef-repo/knife/knife.rb +66 -0
  60. data/spec/integration/minimal-chef-repo/roles/systemwide.rb +10 -0
  61. data/spec/integration/spec/elb_build_spec.rb +95 -0
  62. data/spec/integration/spec_helper.rb +16 -0
  63. data/spec/integration/spec_helper/launch_cluster.rb +55 -0
  64. data/spec/ironfan/ec2/elb_spec.rb +95 -0
  65. data/spec/ironfan/ec2/security_group_spec.rb +0 -6
  66. metadata +60 -3
@@ -99,12 +99,6 @@ describe Ironfan::Dsl::Cluster do
99
99
 
100
100
  end
101
101
  end
102
-
103
-
104
- end
105
-
106
- describe 'clouds' do
107
-
108
102
  end
109
103
  end
110
104
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: ironfan
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 4.3.4
5
+ version: 4.4.0
6
6
  platform: ruby
7
7
  authors:
8
8
  - Infochimps
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2012-10-11 00:00:00 Z
13
+ date: 2012-10-22 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: chef
@@ -147,6 +147,7 @@ files:
147
147
  - .rspec
148
148
  - .yardopts
149
149
  - CHANGELOG.md
150
+ - ELB.md
150
151
  - Gemfile
151
152
  - Guardfile
152
153
  - LICENSE.md
@@ -203,6 +204,8 @@ files:
203
204
  - lib/ironfan/provider/ec2.rb
204
205
  - lib/ironfan/provider/ec2/ebs_volume.rb
205
206
  - lib/ironfan/provider/ec2/elastic_ip.rb
207
+ - lib/ironfan/provider/ec2/elastic_load_balancer.rb
208
+ - lib/ironfan/provider/ec2/iam_server_certificate.rb
206
209
  - lib/ironfan/provider/ec2/keypair.rb
207
210
  - lib/ironfan/provider/ec2/machine.rb
208
211
  - lib/ironfan/provider/ec2/placement_group.rb
@@ -210,11 +213,53 @@ files:
210
213
  - lib/ironfan/provider/virtualbox.rb
211
214
  - lib/ironfan/provider/virtualbox/machine.rb
212
215
  - lib/ironfan/requirements.rb
216
+ - notes/Home.md
217
+ - notes/INSTALL-cloud_setup.md
218
+ - notes/INSTALL.md
219
+ - notes/Ironfan-Roadmap.md
220
+ - notes/advanced-superpowers.md
221
+ - notes/aws_servers.jpg
222
+ - notes/aws_user_key.png
223
+ - notes/cookbook-versioning.md
224
+ - notes/core_concepts.md
225
+ - notes/declaring_volumes.md
226
+ - notes/design_notes-aspect_oriented_devops.md
227
+ - notes/design_notes-ci_testing.md
228
+ - notes/design_notes-cookbook_event_ordering.md
229
+ - notes/design_notes-meta_discovery.md
230
+ - notes/ec2-pricing_and_capacity.md
231
+ - notes/ec2-pricing_and_capacity.numbers
232
+ - notes/homebase-layout.txt
233
+ - notes/knife-cluster-commands.md
234
+ - notes/named-cloud-objects.md
235
+ - notes/opscode_org_key.png
236
+ - notes/opscode_user_key.png
237
+ - notes/philosophy.md
238
+ - notes/rake_tasks.md
239
+ - notes/renamed-recipes.txt
240
+ - notes/silverware.md
241
+ - notes/style_guide.md
242
+ - notes/tips_and_troubleshooting.md
243
+ - notes/version-3_2.md
244
+ - notes/walkthrough-hadoop.md
245
+ - notes/walkthrough-web.md
213
246
  - spec/chef/cluster_bootstrap_spec.rb
247
+ - spec/fixtures/ec2/elb/snakeoil.crt
248
+ - spec/fixtures/ec2/elb/snakeoil.key
214
249
  - spec/fixtures/gunbai.rb
215
250
  - spec/fixtures/gunbai_slice.json
251
+ - spec/integration/minimal-chef-repo/chefignore
252
+ - spec/integration/minimal-chef-repo/environments/_default.json
253
+ - spec/integration/minimal-chef-repo/knife/credentials/knife-org.rb
254
+ - spec/integration/minimal-chef-repo/knife/credentials/knife-user-ironfantester.rb
255
+ - spec/integration/minimal-chef-repo/knife/knife.rb
256
+ - spec/integration/minimal-chef-repo/roles/systemwide.rb
257
+ - spec/integration/spec/elb_build_spec.rb
258
+ - spec/integration/spec_helper.rb
259
+ - spec/integration/spec_helper/launch_cluster.rb
216
260
  - spec/ironfan/cluster_spec.rb
217
261
  - spec/ironfan/ec2/cloud_provider_spec.rb
262
+ - spec/ironfan/ec2/elb_spec.rb
218
263
  - spec/ironfan/ec2/security_group_spec.rb
219
264
  - spec/spec_helper.rb
220
265
  - spec/spec_helper/dummy_chef.rb
@@ -233,7 +278,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
233
278
  requirements:
234
279
  - - ">="
235
280
  - !ruby/object:Gem::Version
236
- hash: -657370034756427507
281
+ hash: -2859463116680425852
237
282
  segments:
238
283
  - 0
239
284
  version: "0"
@@ -252,11 +297,23 @@ specification_version: 3
252
297
  summary: Ironfan allows you to orchestrate not just systems but clusters of machines. It includes a powerful layer on top of knife and a collection of cloud cookbooks.
253
298
  test_files:
254
299
  - spec/spec_helper/dummy_chef.rb
300
+ - spec/integration/spec_helper/launch_cluster.rb
301
+ - spec/integration/minimal-chef-repo/roles/systemwide.rb
302
+ - spec/integration/minimal-chef-repo/environments/_default.json
303
+ - spec/integration/minimal-chef-repo/chefignore
304
+ - spec/integration/minimal-chef-repo/knife/knife.rb
305
+ - spec/integration/minimal-chef-repo/knife/credentials/knife-user-ironfantester.rb
306
+ - spec/integration/minimal-chef-repo/knife/credentials/knife-org.rb
307
+ - spec/integration/spec/elb_build_spec.rb
308
+ - spec/integration/spec_helper.rb
255
309
  - spec/ironfan/cluster_spec.rb
256
310
  - spec/ironfan/ec2/cloud_provider_spec.rb
311
+ - spec/ironfan/ec2/elb_spec.rb
257
312
  - spec/ironfan/ec2/security_group_spec.rb
258
313
  - spec/chef/cluster_bootstrap_spec.rb
259
314
  - spec/fixtures/gunbai_slice.json
315
+ - spec/fixtures/ec2/elb/snakeoil.key
316
+ - spec/fixtures/ec2/elb/snakeoil.crt
260
317
  - spec/fixtures/gunbai.rb
261
318
  - spec/spec_helper.rb
262
319
  - spec/test_config.rb