Skip to content

Commit da68990

Browse files
committed
fix: change default log level from debug to info in deployment.yaml
The operator deployment had --log-level=debug hardcoded, causing verbose lifecycle and reconciliation logs in production (e.g. "generated patch", WAL archiving details). This adds significant noise to log aggregation systems (Loki, CloudWatch, etc.) without actionable signal. Change the default to info. Debug logging is still available by patching the deployment args or setting the flag explicitly. Part of #917 (global default; Helm value and per-cluster override are follow-up work).
1 parent 492baaf commit da68990

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

kubernetes/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ spec:
4040
- --client-cert=/client/tls.crt
4141
- --server-address=:9090
4242
- --leader-elect
43-
- --log-level=debug
43+
- --log-level=info
4444
readinessProbe:
4545
tcpSocket:
4646
port: 9090

0 commit comments

Comments
 (0)