Skip to content

Commit

Permalink
Use milliCPU as units for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvipanda committed Jan 4, 2024
1 parent b674563 commit 5595b13
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions helm-charts/support/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -428,13 +428,14 @@ cryptnono:
# Measured with the following prometheus queries:
# Memory: sum(container_memory_usage_bytes{container="monero", namespace="support"}) by (instance)
# CPU: sum(rate(container_cpu_usage_seconds_total{container="trace", namespace="support"}[5m])) by (instance)
# Seems to hover mostly around the 60Mi mark for memory, and generally less than 0.0002 in CPU
# Seems to hover mostly around the 60Mi mark for memory, and generally less than 0.0002 in CPU. But
# 1m (or 0.001) is the lowest that can be specified in kubernetes, so we use that.
limits:
memory: 128Mi
cpu: 0.005
cpu: 5m
requests:
memory: 64Mi
cpu: 0.0001
cpu: 1m

# Configuration of templates provided directly by this chart
# -------------------------------------------------------------------------------
Expand Down

0 comments on commit 5595b13

Please sign in to comment.