From 863eb2094710f0041069f990bbb240e41ac1b7ff Mon Sep 17 00:00:00 2001 From: Stefan Prodan Date: Fri, 17 Nov 2023 12:53:05 +0200 Subject: [PATCH] Disable status poller cache by default The status poller cache fills the all the available memory when reconciliation hundreds of resources in a single namespace. Signed-off-by: Stefan Prodan --- internal/features/features.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/features/features.go b/internal/features/features.go index 9c77685d..9bba3327 100644 --- a/internal/features/features.go +++ b/internal/features/features.go @@ -46,8 +46,8 @@ var features = map[string]bool{ // opt-in from v0.33 CacheSecretsAndConfigMaps: false, // DisableStatusPollerCache - // opt-in from v0.35 - DisableStatusPollerCache: false, + // opt-out from v1.2 + DisableStatusPollerCache: true, // DisableFailFastBehavior // opt-in from v1.1 DisableFailFastBehavior: false,