Skip to content

Commit

Permalink
chore/Add default requests and limits to prefect server (#332)
Browse files Browse the repository at this point in the history
Add defaults
  • Loading branch information
jimid27 authored May 29, 2024
1 parent a03ef7a commit 948b893
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions charts/prefect-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,13 @@ server:
# requests MUST be specified if using an HPA, otherwise the HPA will not know when to trigger a scale event
resources:
# -- the requested resources for the server container
requests: {}
requests:
cpu: 500m
memory: 512Mi
# -- the requested limits for the server container
limits: {}
limits:
cpu: "1"
memory: 1Gi

# ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
livenessProbe:
Expand Down

0 comments on commit 948b893

Please sign in to comment.