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

fix: de-prioritize c1 #2103

Merged
merged 1 commit into from
Jul 11, 2022
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
4 changes: 2 additions & 2 deletions pkg/cloudprovider/aws/instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -361,8 +361,8 @@ func (p *InstanceProvider) filterInstanceTypes(instanceTypes []cloudprovider.Ins
if !functional.HasAnyPrefix(*it.InstanceType, "m", "c", "r", "a", "t", "i") {
continue
}
// deprioritize 1st/2nd gen burstable and graviton 1
if functional.HasAnyPrefix(*it.InstanceType, "t1", "t2", "a1") {
// deprioritize some older instance types including 1st/2nd gen burstable, compute and graviton
if functional.HasAnyPrefix(*it.InstanceType, "t1", "t2", "a1", "c1") {
continue
}
// deprioritize metal
Expand Down