diff --git a/deploy/helm/studio/README.md b/deploy/helm/studio/README.md index 9c1aaac47a..be6bb6b073 100644 --- a/deploy/helm/studio/README.md +++ b/deploy/helm/studio/README.md @@ -686,6 +686,7 @@ resources: memory: "1Gi" cpu: "750m" limits: + cpu: "1" memory: "1Gi" nginx: @@ -694,11 +695,12 @@ nginx: memory: "128Mi" cpu: "500m" limits: + cpu: "1" memory: "256Mi" ``` `resources` applies to each Bun API container. With two API containers plus -nginx, the main pod requests 2 CPU cores by default. +nginx, the main pod requests 2 CPU cores and limits to ~2.5 CPU cores total by default. ### Health Checks diff --git a/deploy/helm/studio/values.yaml b/deploy/helm/studio/values.yaml index 528b492ef2..8be8078740 100644 --- a/deploy/helm/studio/values.yaml +++ b/deploy/helm/studio/values.yaml @@ -41,6 +41,7 @@ resources: cpu: "750m" memory: "1Gi" limits: + cpu: "1" memory: "1Gi" database: @@ -100,6 +101,7 @@ nginx: cpu: "500m" memory: "128Mi" limits: + cpu: "1" memory: "256Mi" securityContext: runAsNonRoot: true