From 949d8f2de924d5cd58e3fe0c72dfd93ac8e5ffda Mon Sep 17 00:00:00 2001 From: Sai Sridhar Date: Wed, 3 Jun 2026 09:52:53 +0530 Subject: [PATCH] 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). --- kubernetes/deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubernetes/deployment.yaml b/kubernetes/deployment.yaml index 756f1ddb..cba5dd05 100644 --- a/kubernetes/deployment.yaml +++ b/kubernetes/deployment.yaml @@ -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