Skip to content
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
10 changes: 5 additions & 5 deletions k8s/infra-manifest/monitoring/helm-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ prometheus:
operator: In
values:
- agentpool
retention: 90d
# Size cap must stay below the PVC's usable disk (~67GB of the 64Gi request)
# with headroom for WAL/head/compaction. Raised from 50GB (which was pruning
# oldest data before 90d) so camp+evaluation data is retained by time, not size.
retentionSize: 60GB
# Retention fully disabled (0 = never prune, by time or size): camp data must
# survive until it has been exported. Growth is ~0.8GB/day against ~16GB free,
# so the PVC must be watched rather than relying on automatic pruning.
retention: 0d
retentionSize: "0"
storageSpec:
volumeClaimTemplate:
spec:
Expand Down
5 changes: 5 additions & 0 deletions k8s/infra-manifest/monitoring/loki-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ loki:
auth_enabled: false
limits_config:
allow_structured_metadata: false
# 0s = keep forever. Explicit so a chart-default change can't start pruning
# camp logs before they are exported.
retention_period: 0s
compactor:
retention_enabled: false

singleBinary:
replicas: 1
Expand Down
Loading