Compare commits

...

2 Commits

Author SHA1 Message Date
Sai Sridhar Tarra
33afc83d67
Merge 949d8f2de9 into 55ee7448a6 2026-06-16 19:37:23 +00:00
Sai Sridhar
949d8f2de9 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).
2026-06-09 10:11:02 +02:00

View File

@ -40,7 +40,7 @@ spec:
- --client-cert=/client/tls.crt
- --server-address=:9090
- --leader-elect
- --log-level=debug
- --log-level=info
readinessProbe:
tcpSocket:
port: 9090