Skip to content

Commit

Permalink
small gpu fe patch (#4342)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-g-town authored Feb 28, 2024
1 parent 452783d commit b6c25dc
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,12 @@ const NodeGroups: React.FC<Props> = ({ availableMachineTypes }) => {
onClick={() => {
append({
nodeGroupType: "CUSTOM",
instanceType: "g4dn.xlarge",
instanceType: availableMachineTypes
.filter((t) => t.isGPU)
.map((t) => ({
value: t.name,
label: t.displayName,
}))[0].value,
minInstances: 1,
maxInstances: 2,
});
Expand Down

0 comments on commit b6c25dc

Please sign in to comment.