Skip to content

Commit

Permalink
Use request instead of limits for cpu resource
Browse files Browse the repository at this point in the history
Since CPU is a compressible resource it makes sense for us not to limit it. Furthermore, since we want to meet the conditions for our node to be catalogued as `burstable` by Kubernetes we want to provide a `request` spec.
  • Loading branch information
AndyTitu authored Oct 9, 2024
1 parent 84dd56a commit 1f8a7b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion charts/connect/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ connect:
resources:
limits:
memory: 128Mi
cpu: 0.2
requests:
cpu: 0.2m
httpPort: 8080
httpsPort: 8443
logLevel: info
Expand Down

0 comments on commit 1f8a7b0

Please sign in to comment.