Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion deploy/helm/studio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -686,6 +686,7 @@ resources:
memory: "1Gi"
cpu: "750m"
limits:
cpu: "1"
memory: "1Gi"

nginx:
Expand All @@ -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

Expand Down
2 changes: 2 additions & 0 deletions deploy/helm/studio/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ resources:
cpu: "750m"
memory: "1Gi"
limits:
cpu: "1"
memory: "1Gi"

database:
Expand Down Expand Up @@ -100,6 +101,7 @@ nginx:
cpu: "500m"
memory: "128Mi"
limits:
cpu: "1"
memory: "256Mi"
securityContext:
runAsNonRoot: true
Expand Down
Loading