Skip to content
Open
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
8 changes: 8 additions & 0 deletions .kontinuous/env/prod/values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
api:
resources:
limits:
cpu: 1500m
memory: 2Gi
requests:
cpu: 700m
memory: 2Gi
Comment on lines +6 to +8
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Memory requests and limits are identical (2Gi), which prevents horizontal pod autoscaling from working effectively. Consider setting requests lower than limits to allow for better resource utilization and scaling. For example, set memory requests to 1Gi to allow pods to scale based on actual memory usage while maintaining the 2Gi safety limit.

Suggested change
requests:
cpu: 700m
memory: 2Gi
requests:
cpu: 700m
memory: 1Gi

Loading