Skip to content

Commit

Permalink
feat(charts.crisiscleanup): increase memory limit of api jobs
Browse files Browse the repository at this point in the history
Signed-off-by: Braden Mars <[email protected]>
  • Loading branch information
BradenM committed Mar 19, 2024
1 parent e4396d6 commit c7b8eec
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion packages/k8s/construct/api/src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,10 @@ export class ApiWSGI

const jobResources: kplus.ContainerProps['resources'] = {
cpu: this.props.containerDefaults!.resources!.cpu!,
memory: this.props.containerDefaults!.resources!.memory!,
memory: {
...this.props.containerDefaults!.resources!.memory!,
limit: Size.gibibytes(3),
},
}

// migrate + collectstatic jobs
Expand Down
Loading

0 comments on commit c7b8eec

Please sign in to comment.