Skip to content

Commit

Permalink
Merge pull request #342 from stakwork/ux/instance-classification
Browse files Browse the repository at this point in the history
update: added little description to instance types
  • Loading branch information
tobi-bams authored Oct 10, 2024
2 parents af70716 + e24ef92 commit 5341bb8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/bin/super/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -247,16 +247,16 @@ pub async fn accessing_child_container_controller(
pub fn get_aws_instance_types() -> SuperSwarmResponse {
let instance_types: Vec<AwsInstanceType> = vec![
AwsInstanceType {
name: "G4dn 2XLarge".to_string(),
value: "g4dn.2xlarge".to_string(),
name: "M5 Large (S)".to_string(),
value: "m5.large".to_string(),
},
AwsInstanceType {
name: "M5 XLarge".to_string(),
name: "M5 XLarge (M)".to_string(),
value: "m5.xlarge".to_string(),
},
AwsInstanceType {
name: "M5 Large".to_string(),
value: "m5.large".to_string(),
name: "G4dn 2XLarge (L)".to_string(),
value: "g4dn.2xlarge".to_string(),
},
];

Expand Down

0 comments on commit 5341bb8

Please sign in to comment.