Merge pull request #6837 from mikesplain/add_t3a_family

Add t3a family
This commit is contained in:
Kubernetes Prow Robot 2019-04-26 12:16:09 -07:00 committed by GitHub
commit 78f5b2c06a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 92 additions and 0 deletions

View File

@ -200,6 +200,13 @@ var InstanceENIsAvailable = map[string]int{
"t3.large": 3,
"t3.xlarge": 4,
"t3.2xlarge": 4,
"t3a.nano": 2,
"t3a.micro": 2,
"t3a.small": 3,
"t3a.medium": 3,
"t3a.large": 3,
"t3a.xlarge": 4,
"t3a.2xlarge": 4,
"u-6tb1.metal": 5,
"u-9tb1.metal": 5,
"u-12tb1.metal": 5,
@ -391,6 +398,13 @@ var InstanceIPsAvailable = map[string]int64{
"t3.large": 12,
"t3.xlarge": 15,
"t3.2xlarge": 15,
"t3a.nano": 2,
"t3a.micro": 2,
"t3a.small": 4,
"t3a.medium": 6,
"t3a.large": 12,
"t3a.xlarge": 15,
"t3a.2xlarge": 15,
"u-6tb1.metal": 30,
"u-9tb1.metal": 30,
"u-12tb1.metal": 30,

View File

@ -1826,6 +1826,84 @@ var MachineTypes []AWSMachineTypeInfo = []AWSMachineTypeInfo{
Burstable: true,
},
// t3a family
{
Name: "t3a.nano",
MemoryGB: 0.5,
ECU: 0 * BurstableCreditsToECUS,
Cores: 2,
InstanceENIs: 2,
InstanceIPsPerENI: 2,
EphemeralDisks: nil,
Burstable: true,
},
{
Name: "t3a.micro",
MemoryGB: 1,
ECU: 0 * BurstableCreditsToECUS,
Cores: 2,
InstanceENIs: 2,
InstanceIPsPerENI: 2,
EphemeralDisks: nil,
Burstable: true,
},
{
Name: "t3a.small",
MemoryGB: 2,
ECU: 0 * BurstableCreditsToECUS,
Cores: 2,
InstanceENIs: 3,
InstanceIPsPerENI: 4,
EphemeralDisks: nil,
Burstable: true,
},
{
Name: "t3a.medium",
MemoryGB: 4,
ECU: 0 * BurstableCreditsToECUS,
Cores: 2,
InstanceENIs: 3,
InstanceIPsPerENI: 6,
EphemeralDisks: nil,
Burstable: true,
},
{
Name: "t3a.large",
MemoryGB: 8,
ECU: 0 * BurstableCreditsToECUS,
Cores: 2,
InstanceENIs: 3,
InstanceIPsPerENI: 12,
EphemeralDisks: nil,
Burstable: true,
},
{
Name: "t3a.xlarge",
MemoryGB: 16,
ECU: 0 * BurstableCreditsToECUS,
Cores: 4,
InstanceENIs: 4,
InstanceIPsPerENI: 15,
EphemeralDisks: nil,
Burstable: true,
},
{
Name: "t3a.2xlarge",
MemoryGB: 32,
ECU: 0 * BurstableCreditsToECUS,
Cores: 8,
InstanceENIs: 4,
InstanceIPsPerENI: 15,
EphemeralDisks: nil,
Burstable: true,
},
// x1 family
{
Name: "x1.16xlarge",