mirror of
https://github.com/cloudnative-pg/plugin-barman-cloud.git
synced 2026-07-06 17:52:21 +02:00
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).
This commit is contained in:
parent
787d2b35ad
commit
949d8f2de9
@ -40,7 +40,7 @@ spec:
|
|||||||
- --client-cert=/client/tls.crt
|
- --client-cert=/client/tls.crt
|
||||||
- --server-address=:9090
|
- --server-address=:9090
|
||||||
- --leader-elect
|
- --leader-elect
|
||||||
- --log-level=debug
|
- --log-level=info
|
||||||
readinessProbe:
|
readinessProbe:
|
||||||
tcpSocket:
|
tcpSocket:
|
||||||
port: 9090
|
port: 9090
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user