Skip to content

Commit

Permalink
Merge pull request #452 from SelfDeploy/fix/update_aws_flavor_core_count
Browse files Browse the repository at this point in the history
Update aws flavors cpu count.
  • Loading branch information
geemus authored Jun 21, 2018
2 parents 81110a3 + efc576a commit 2993d42
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions lib/fog/aws/models/compute/flavors.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class AWS
:id => 't1.micro',
:name => 'Micro Instance',
:bits => 0,
:cores => 2,
:cores => 1,
:disk => 0,
:ram => 613,
:ebs_optimized_available => false,
Expand Down Expand Up @@ -98,7 +98,7 @@ class AWS
:id => 'm1.medium',
:name => 'Medium Instance',
:bits => 32,
:cores => 2,
:cores => 1,
:disk => 400,
:ram => 3750,
:ebs_optimized_available => false,
Expand All @@ -108,7 +108,7 @@ class AWS
:id => 'm1.large',
:name => 'Large Instance',
:bits => 64,
:cores => 4,
:cores => 2,
:disk => 850,
:ram => 7680,
:ebs_optimized_available => true,
Expand All @@ -118,7 +118,7 @@ class AWS
:id => 'm1.xlarge',
:name => 'Extra Large Instance',
:bits => 64,
:cores => 8,
:cores => 4,
:disk => 1690,
:ram => 15360,
:ebs_optimized_available => true,
Expand All @@ -127,7 +127,7 @@ class AWS
{
:id => 'c1.medium',
:bits => 32,
:cores => 5,
:cores => 2,
:disk => 350,
:name => 'High-CPU Medium',
:ram => 1740.8,
Expand Down Expand Up @@ -188,7 +188,7 @@ class AWS
:id => 'c3.8xlarge',
:name => 'C3 Eight Extra Large',
:bits => 64,
:cores => 16,
:cores => 32,
:disk => 640,
:ram => 61440,
:ebs_optimized_available => false,
Expand Down Expand Up @@ -328,7 +328,7 @@ class AWS
:id => 'hs1.8xlarge',
:name => 'High Storage Eight Extra Large',
:bits => 64,
:cores => 35,
:cores => 16,
:disk => 50331648,
:ram => 119808,
:ebs_optimized_available => false,
Expand All @@ -338,7 +338,7 @@ class AWS
:id => 'm2.xlarge',
:name => 'High-Memory Extra Large',
:bits => 64,
:cores => 6.5,
:cores => 2,
:disk => 420,
:ram => 17510.4,
:ebs_optimized_available => false,
Expand All @@ -348,7 +348,7 @@ class AWS
:id => 'm2.2xlarge',
:name => 'High Memory Double Extra Large',
:bits => 64,
:cores => 13,
:cores => 4,
:disk => 850,
:ram => 35020.8,
:ebs_optimized_available => true,
Expand All @@ -358,7 +358,7 @@ class AWS
:id => 'm2.4xlarge',
:name => 'High Memory Quadruple Extra Large',
:bits => 64,
:cores => 26,
:cores => 8,
:disk => 1690,
:ram => 70041.6,
:ebs_optimized_available => true,
Expand All @@ -368,7 +368,7 @@ class AWS
:id => 'cr1.8xlarge',
:name => 'High Memory Eight Extra Large',
:bits => 64,
:cores => 88,
:cores => 32,
:disk => 240,
:ram => 249856,
:ebs_optimized_available => false,
Expand Down Expand Up @@ -438,7 +438,7 @@ class AWS
:id => 'cc2.8xlarge',
:name => 'Cluster Compute Eight Extra Large',
:bits => 64,
:cores => 88,
:cores => 32,
:disk => 3370,
:ram => 61952,
:ebs_optimized_available => false,
Expand Down Expand Up @@ -548,7 +548,7 @@ class AWS
:id => 'i3.16xlarge',
:name => 'I3 Sixteen Extra Large',
:bits => 64,
:cores => 32,
:cores => 64,
:disk => 15200,
:ram => 499712,
:ebs_optimized_available => true,
Expand Down Expand Up @@ -658,7 +658,7 @@ class AWS
:id => "r4.16xlarge",
:name => "R4 Sixteen Extra Large",
:bits => 64,
:cores => 32,
:cores => 64,
:ram => 499712,
:disk => 0,
:ebs_optimized_available => true,
Expand Down

0 comments on commit 2993d42

Please sign in to comment.