Skip to content

Commit a301f9c

Browse files
soohyunmeclaude
andcommitted
fix(loki): zero SimpleScalable replicas and disable unused components
Loki chart v6.x ships with non-zero defaults for read/write/backend even when deploymentMode: SingleBinary is set, which trips the chart's validate.yaml ("more than zero replicas configured for both ..." error). Explicitly set them to 0. Also disable chunksCache / resultsCache (memcached), gateway, lokiCanary, and test hooks — unnecessary for a single-node ARM64 deployment and they add memory pressure. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 2bf8ca8 commit a301f9c

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

infrastructure/base/monitoring/loki/values.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,27 @@ singleBinary:
1515
size: 50Gi
1616
storageClass: local-path
1717

18+
# Loki chart v6.x: explicitly zero SimpleScalable targets so the
19+
# chart's validate.yaml accepts SingleBinary-only deployment.
20+
read:
21+
replicas: 0
22+
write:
23+
replicas: 0
24+
backend:
25+
replicas: 0
26+
27+
# Disable auxiliary components not needed on single-node ARM64
28+
chunksCache:
29+
enabled: false
30+
resultsCache:
31+
enabled: false
32+
gateway:
33+
enabled: false
34+
lokiCanary:
35+
enabled: false
36+
test:
37+
enabled: false
38+
1839
loki:
1940
auth_enabled: false
2041

0 commit comments

Comments
 (0)