Skip to content
This repository was archived by the owner on Aug 26, 2026. It is now read-only.
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,17 @@ spec:
enabled: true
type: ClusterIP
port: 9400
# dcgm-exporter 4.x resident set sits around 450 MiB once the DCGM
# host engine has initialised, so the previous 256Mi ceiling killed it
# ~2s after `DCGM successfully initialized!` on every start. The
# upstream chart default is 512Mi; 1Gi leaves headroom above the
# observed steady state.
resources:
requests:
cpu: 50m
memory: 64Mi
memory: 256Mi
nvidia.com/gpu: 1
limits:
cpu: 200m
memory: 256Mi
memory: 1Gi
nvidia.com/gpu: 1
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ spec:
values:
pyroscope:
replicaCount: 1
# The chart ships `extraArgs.log.level: debug`, which makes a
# single-binary homelab install log every block flush and memberlist
# tick. Nothing consumes those lines.
extraArgs:
log.level: info
persistence:
enabled: true
size: 20Gi
Expand Down