Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update aws flavors cpu count. #452

Merged
merged 1 commit into from Jun 21, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 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 All @@ -138,7 +138,7 @@ class AWS
:id => 'c1.xlarge',
:name => 'High-CPU Extra Large',
:bits => 64,
:cores => 20,
:cores => 8,
:disk => 1690,
:ram => 7168,
:ebs_optimized_available => true,
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