ironfan 4.3.4 → 4.4.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +7 -0
- data/ELB.md +121 -0
- data/Gemfile +1 -0
- data/Rakefile +4 -0
- data/VERSION +1 -1
- data/ironfan.gemspec +48 -3
- data/lib/chef/knife/cluster_launch.rb +5 -0
- data/lib/chef/knife/cluster_proxy.rb +3 -3
- data/lib/chef/knife/cluster_sync.rb +4 -0
- data/lib/chef/knife/ironfan_knife_common.rb +17 -6
- data/lib/chef/knife/ironfan_script.rb +29 -11
- data/lib/ironfan.rb +2 -2
- data/lib/ironfan/broker/computer.rb +8 -3
- data/lib/ironfan/dsl/ec2.rb +133 -2
- data/lib/ironfan/headers.rb +4 -0
- data/lib/ironfan/provider.rb +48 -3
- data/lib/ironfan/provider/ec2.rb +23 -8
- data/lib/ironfan/provider/ec2/elastic_load_balancer.rb +239 -0
- data/lib/ironfan/provider/ec2/iam_server_certificate.rb +101 -0
- data/lib/ironfan/provider/ec2/machine.rb +8 -0
- data/lib/ironfan/provider/ec2/security_group.rb +3 -5
- data/lib/ironfan/requirements.rb +2 -0
- data/notes/Home.md +45 -0
- data/notes/INSTALL-cloud_setup.md +103 -0
- data/notes/INSTALL.md +134 -0
- data/notes/Ironfan-Roadmap.md +70 -0
- data/notes/advanced-superpowers.md +16 -0
- data/notes/aws_servers.jpg +0 -0
- data/notes/aws_user_key.png +0 -0
- data/notes/cookbook-versioning.md +11 -0
- data/notes/core_concepts.md +200 -0
- data/notes/declaring_volumes.md +3 -0
- data/notes/design_notes-aspect_oriented_devops.md +36 -0
- data/notes/design_notes-ci_testing.md +169 -0
- data/notes/design_notes-cookbook_event_ordering.md +249 -0
- data/notes/design_notes-meta_discovery.md +59 -0
- data/notes/ec2-pricing_and_capacity.md +69 -0
- data/notes/ec2-pricing_and_capacity.numbers +0 -0
- data/notes/homebase-layout.txt +102 -0
- data/notes/knife-cluster-commands.md +18 -0
- data/notes/named-cloud-objects.md +11 -0
- data/notes/opscode_org_key.png +0 -0
- data/notes/opscode_user_key.png +0 -0
- data/notes/philosophy.md +13 -0
- data/notes/rake_tasks.md +24 -0
- data/notes/renamed-recipes.txt +142 -0
- data/notes/silverware.md +85 -0
- data/notes/style_guide.md +300 -0
- data/notes/tips_and_troubleshooting.md +92 -0
- data/notes/version-3_2.md +273 -0
- data/notes/walkthrough-hadoop.md +168 -0
- data/notes/walkthrough-web.md +166 -0
- data/spec/fixtures/ec2/elb/snakeoil.crt +35 -0
- data/spec/fixtures/ec2/elb/snakeoil.key +51 -0
- data/spec/integration/minimal-chef-repo/chefignore +41 -0
- data/spec/integration/minimal-chef-repo/environments/_default.json +12 -0
- data/spec/integration/minimal-chef-repo/knife/credentials/knife-org.rb +19 -0
- data/spec/integration/minimal-chef-repo/knife/credentials/knife-user-ironfantester.rb +9 -0
- data/spec/integration/minimal-chef-repo/knife/knife.rb +66 -0
- data/spec/integration/minimal-chef-repo/roles/systemwide.rb +10 -0
- data/spec/integration/spec/elb_build_spec.rb +95 -0
- data/spec/integration/spec_helper.rb +16 -0
- data/spec/integration/spec_helper/launch_cluster.rb +55 -0
- data/spec/ironfan/ec2/elb_spec.rb +95 -0
- data/spec/ironfan/ec2/security_group_spec.rb +0 -6
- metadata +60 -3
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: ironfan
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 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-
|
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: -
|
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
|