Skip to content
This repository has been archived by the owner on Feb 22, 2024. It is now read-only.

Commit

Permalink
increase CPU limit
Browse files Browse the repository at this point in the history
  • Loading branch information
broadeditz committed Nov 14, 2023
1 parent f5fa51a commit 6d01ccc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/deployment.tf
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@ resource "kubernetes_deployment" "app" {

resources {
requests = {
cpu = local.infra.production ? "250m" : "150m"
cpu = local.infra.production ? "350m" : "150m"
memory = local.infra.production ? "1.5Gi" : "500Mi"
}
limits = {
cpu = local.infra.production ? "350m" : "150m"
cpu = local.infra.production ? "500m" : "150m"
memory = local.infra.production ? "3Gi" : "500Mi"
}
}
Expand Down

0 comments on commit 6d01ccc

Please sign in to comment.