-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[aws][feat] Make a collection of Ec2 Instance types only for existing…
… instances (#2264) Co-authored-by: Matthias Veit <[email protected]>
- Loading branch information
1 parent
ebb67be
commit bc8eae4
Showing
7 changed files
with
182 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
128 changes: 128 additions & 0 deletions
128
.../test/resources/files/ec2/describe-instance-types__instance_type_m4_large_mac2_metal.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,128 @@ | ||
{ | ||
"InstanceTypes": [ | ||
{ | ||
"InstanceType": "m4.large", | ||
"CurrentGeneration": true, | ||
"FreeTierEligible": false, | ||
"SupportedUsageClasses": [ | ||
"on-demand", | ||
"spot" | ||
], | ||
"SupportedRootDeviceTypes": [ | ||
"ebs" | ||
], | ||
"SupportedVirtualizationTypes": [ | ||
"hvm" | ||
], | ||
"BareMetal": false, | ||
"Hypervisor": "nitro", | ||
"ProcessorInfo": { | ||
"SupportedArchitectures": [ | ||
"x86_64" | ||
], | ||
"SustainedClockSpeedInGhz": 3.5 | ||
}, | ||
"VCpuInfo": { | ||
"DefaultVCpus": 8, | ||
"DefaultCores": 4, | ||
"DefaultThreadsPerCore": 2, | ||
"ValidCores": [ | ||
2, | ||
4 | ||
], | ||
"ValidThreadsPerCore": [ | ||
1, | ||
2 | ||
] | ||
}, | ||
"MemoryInfo": { | ||
"SizeInMiB": 16384 | ||
}, | ||
"InstanceStorageSupported": false, | ||
"InstanceStorageInfo": { | ||
"EbsInfo": { | ||
"EbsStorageSupported": false, | ||
"EbsStorageInfo": { | ||
"VolumeTypes": [ | ||
"standard" | ||
], | ||
"VolumeSizeInGiBMin": 1, | ||
"VolumeSizeInGiBMax": 1024 | ||
} | ||
}, | ||
"InstanceStorageSupported": false, | ||
"InstanceStorageInfo": { | ||
"VolumeTypes": [ | ||
"standard" | ||
], | ||
"VolumeSizeInGiBMin": 1, | ||
"VolumeSizeInGiBMax": 1024 | ||
} | ||
}, | ||
"GpuInfo": { | ||
"GPUsSupported": false, | ||
"GPUSupported": false, | ||
"GPUSupportedOnDemand": false, | ||
"GPUSupportedSpot": false | ||
}, | ||
"FpgaInfo": { | ||
"FPGAsSupported": false, | ||
"FPGASupported": false, | ||
"FPGASupportedOnDemand": false, | ||
"FPGASupportedSpot": false | ||
}, | ||
"InferenceAcceleratorInfo": { | ||
"InferenceAcceleratorsSupported": false, | ||
"InferenceAcceleratorsSupportedOnDemand": false, | ||
"InferenceAcceleratorsSupportedSpot": false | ||
}, | ||
"EbsInfo": { | ||
"EbsOptimizedSupport": "default", | ||
"EncryptionSupport": "supported", | ||
"EbsOptimizedInfo": { | ||
"BaselineBandwidthInMbps": 2500, | ||
"BaselineThroughputInMBps": 312.5, | ||
"BaselineIops": 12000, | ||
"MaximumBandwidthInMbps": 10000, | ||
"MaximumThroughputInMBps": 1250, | ||
"MaximumIops": 40000 | ||
}, | ||
"NvmeSupport": "required" | ||
}, | ||
"NetworkInfo": { | ||
"NetworkPerformance": "Up to 12.5 Gigabit", | ||
"MaximumNetworkInterfaces": 4, | ||
"MaximumNetworkCards": 1, | ||
"DefaultNetworkCardIndex": 0, | ||
"NetworkCards": [ | ||
{ | ||
"NetworkCardIndex": 0, | ||
"NetworkPerformance": "Up to 12.5 Gigabit", | ||
"MaximumNetworkInterfaces": 4 | ||
} | ||
], | ||
"Ipv4AddressesPerInterface": 15, | ||
"Ipv6AddressesPerInterface": 15, | ||
"Ipv6Supported": true, | ||
"EnaSupport": "required", | ||
"EfaSupported": false, | ||
"EncryptionInTransitSupported": true | ||
}, | ||
"PlacementGroupInfo": { | ||
"SupportedStrategies": [ | ||
"cluster", | ||
"partition", | ||
"spread" | ||
] | ||
}, | ||
"HibernationSupported": false, | ||
"BurstablePerformanceSupported": false, | ||
"DedicatedHostsSupported": true, | ||
"AutoRecoverySupported": true, | ||
"SupportedBootModes": [ | ||
"legacy-bios", | ||
"uefi" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters