Skip to content

Commit

Permalink
chore(infra): increase cpu/memory allocation for web app
Browse files Browse the repository at this point in the history
  • Loading branch information
geclos committed Nov 17, 2024
1 parent eecf78d commit 444c2e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/infra/src/app/production/web.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ const taskDefinition = pulumi
([logGroupName, imageName, coreImageName, environment]) =>
new aws.ecs.TaskDefinition('LatitudeLLMAppTaskDefinition', {
family: 'LatitudeLLMAppTaskFamily',
cpu: '512',
memory: '1024',
cpu: '1024',
memory: '2048',
networkMode: 'awsvpc',
requiresCompatibilities: ['FARGATE'],
executionRoleArn: ecsTaskExecutionRole,
Expand Down

0 comments on commit 444c2e4

Please sign in to comment.