Skip to content

Commit

Permalink
remove aws instance types t3.nano & t3.micro as they are too small (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
kubermatic-bot authored and Marcin Maciaszczyk committed Mar 21, 2019
1 parent a494dea commit d2fe449
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/shared/model/NodeProviderConstants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ export class NodeProvider {
// Keep in sync with https://aws.amazon.com/ec2/instance-types/.
export namespace NodeInstanceFlavors {
export const AWS: string[] = [
't3.nano', 't3.micro', 't3.small', 't3.medium', 't3.large', 't3.xlarge', 't3.2xlarge', 'm5.large', 'm5d.large',
'm5.xlarge', 'm5.2xlarge', 'm3.medium', 'c5.large', 'c5.xlarge', 'c5.2xlarge'
't3.small', 't3.medium', 't3.large', 't3.xlarge', 't3.2xlarge', 'm5.large', 'm5d.large', 'm5.xlarge', 'm5.2xlarge',
'm3.medium', 'c5.large', 'c5.xlarge', 'c5.2xlarge'
];
export const Openstack: string[] = ['m1.micro', 'm1.tiny', 'm1.small', 'm1.medium', 'm1.large'];
export const Hetzner: string[] =
Expand Down

0 comments on commit d2fe449

Please sign in to comment.