Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
Merge pull request #191 from Netflix/add-nitro-instanecs
Browse files Browse the repository at this point in the history
Add R5 Instance type to titus-executor limits
  • Loading branch information
sargun committed Oct 20, 2018
2 parents 232ed79 + 7cadb22 commit cccabf5
Showing 1 changed file with 39 additions and 1 deletion.
40 changes: 39 additions & 1 deletion vpc/limits.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ var interfaceLimits = map[string]map[string]limits{
},
"24xlarge": limits{
interfaces: 15,
ipAddressesPerInterface: 30,
ipAddressesPerInterface: 50,
ip6AddressesPerInterface: 2,
networkThroughput: 23000,
},
Expand Down Expand Up @@ -130,6 +130,44 @@ var interfaceLimits = map[string]map[string]limits{
networkThroughput: 23000,
},
},
"r5": {
"large": limits{
interfaces: 3,
ipAddressesPerInterface: 10,
ip6AddressesPerInterface: 2,
networkThroughput: 1000,
},
"xlarge": limits{
interfaces: 4,
ipAddressesPerInterface: 15,
ip6AddressesPerInterface: 2,
networkThroughput: 1000,
},
"2xlarge": limits{
interfaces: 4,
ipAddressesPerInterface: 15,
ip6AddressesPerInterface: 2,
networkThroughput: 2000,
},
"4xlarge": limits{
interfaces: 8,
ipAddressesPerInterface: 30,
ip6AddressesPerInterface: 2,
networkThroughput: 4000,
},
"8xlarge": limits{
interfaces: 8,
ipAddressesPerInterface: 30,
ip6AddressesPerInterface: 2,
networkThroughput: 9000,
},
"16xlarge": limits{
interfaces: 15,
ipAddressesPerInterface: 50,
ip6AddressesPerInterface: 2,
networkThroughput: 23000,
},
},
"p2": {
"xlarge": limits{
interfaces: 4,
Expand Down

0 comments on commit cccabf5

Please sign in to comment.