Skip to content

Commit

Permalink
feat: create default cluster with FARGATE_SPOT capacity
Browse files Browse the repository at this point in the history
Creating with FARGATE_SPOT allows on-demand Fargate tasks to be scheduled, but not vice versa
  • Loading branch information
hassy committed Feb 2, 2024
1 parent b3247ae commit d442d28
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ async function createArtilleryCluster(context) {
await ecs
.createCluster({
clusterName: ARTILLERY_CLUSTER_NAME,
capacityProviders: ['FARGATE']
capacityProviders: ['FARGATE_SPOT']
})
.promise();

Expand Down

0 comments on commit d442d28

Please sign in to comment.