From fc2f17bb558cb565dd5e4f4eb80ada60b4bd56f7 Mon Sep 17 00:00:00 2001 From: Alejandro Moreno Date: Wed, 2 Oct 2024 15:59:09 +0200 Subject: [PATCH] Increase unseal retry limit Signed-off-by: Alejandro Moreno --- pkg/controller/controller.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/controller/controller.go b/pkg/controller/controller.go index 7c42469b4f..6784790d09 100644 --- a/pkg/controller/controller.go +++ b/pkg/controller/controller.go @@ -38,7 +38,7 @@ import ( ) const ( - maxRetries = 5 + maxRetries = 15 // SuccessUnsealed is used as part of the Event 'reason' when // a SealedSecret is unsealed successfully.