ironfan 4.11.2.pre3 → 4.11.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +7 -0
- data/VERSION +1 -1
- data/ironfan.gemspec +3 -3
- data/lib/ironfan/dsl/ec2.rb +1 -0
- metadata +6 -6
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
# v4.11.2
|
2
|
+
* Several changes to ec2/machine, from earlier call of to_s during register call (thanks @brandonbell, @rottmanj)
|
3
|
+
* testing for possible nil result from tags
|
4
|
+
* removing more bare access of tags['name'] (bad monkey, no banana)
|
5
|
+
* wrapping groups call so that it's always an Array
|
6
|
+
* Add cc2.8xlarge EC2 instance type for people who swing big wallets (thanks @nickmarden)
|
7
|
+
|
1
8
|
# v4.11.1
|
2
9
|
* Added fall-back Chef::Client loading, if Solr index has fallen behind (thanks @brandonbell)
|
3
10
|
* Moved logging of resource loading into Resource.register, instead of individual resources
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
4.11.2
|
1
|
+
4.11.2
|
data/ironfan.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "ironfan"
|
8
|
-
s.version = "4.11.2
|
8
|
+
s.version = "4.11.2"
|
9
9
|
|
10
|
-
s.required_rubygems_version = Gem::Requirement.new("
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Infochimps"]
|
12
|
-
s.date = "2013-06-
|
12
|
+
s.date = "2013-06-27"
|
13
13
|
s.description = "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."
|
14
14
|
s.email = "coders@infochimps.com"
|
15
15
|
s.extra_rdoc_files = [
|
data/lib/ironfan/dsl/ec2.rb
CHANGED
@@ -301,6 +301,7 @@ Chef::Config[:ec2_flavor_info].merge!({
|
|
301
301
|
'm2.4xlarge' => { :price => 1.80, :bits => 64, :ram => 70041, :cores => 8, :core_size => 3.25, :inst_disks => 4, :inst_disk_size => 1690, :ephemeral_volumes => 4, :ebs_optimizable => 1000, },
|
302
302
|
'cc1.4xlarge' => { :price => 1.30, :bits => 64, :ram => 23552, :cores => 8, :core_size => 4.19, :inst_disks => 4, :inst_disk_size => 1690, :ephemeral_volumes => 2, :placement_groupable => true, :virtualization => 'hvm' },
|
303
303
|
'cc1.8xlarge' => { :price => 2.40, :bits => 64, :ram => 61952, :cores =>16, :core_size => 5.50, :inst_disks => 8, :inst_disk_size => 3370, :ephemeral_volumes => 4, :placement_groupable => true, :virtualization => 'hvm' },
|
304
|
+
'cc2.8xlarge' => { :price => 2.40, :bits => 64, :ram => 61952, :cores =>16, :core_size => 5.50, :inst_disks => 8, :inst_disk_size => 3370, :ephemeral_volumes => 4, :placement_groupable => true, :virtualization => 'hvm' },
|
304
305
|
'cg1.4xlarge' => { :price => 2.10, :bits => 64, :ram => 22528, :cores => 8, :core_size => 4.19, :inst_disks => 4, :inst_disk_size => 1690, :ephemeral_volumes => 2, :placement_groupable => true, :virtualization => 'hvm' },
|
305
306
|
})
|
306
307
|
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ironfan
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.11.2
|
5
|
-
prerelease:
|
4
|
+
version: 4.11.2
|
5
|
+
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Infochimps
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-06-
|
12
|
+
date: 2013-06-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: chef
|
@@ -381,13 +381,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
381
381
|
version: '0'
|
382
382
|
segments:
|
383
383
|
- 0
|
384
|
-
hash: -
|
384
|
+
hash: -334978853826199168
|
385
385
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
386
386
|
none: false
|
387
387
|
requirements:
|
388
|
-
- - ! '
|
388
|
+
- - ! '>='
|
389
389
|
- !ruby/object:Gem::Version
|
390
|
-
version:
|
390
|
+
version: '0'
|
391
391
|
requirements: []
|
392
392
|
rubyforge_project:
|
393
393
|
rubygems_version: 1.8.23
|