From afce891ccb9b29656cadf43d5e5bdcad4d3edece Mon Sep 17 00:00:00 2001 From: Alexey Kazakov Date: Mon, 29 Jul 2024 11:07:38 -0700 Subject: [PATCH] Fix namespace predicate description (#421) --- controllers/toolchainclustercache/namespace_predicate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers/toolchainclustercache/namespace_predicate.go b/controllers/toolchainclustercache/namespace_predicate.go index 4b80c21c..680d9268 100644 --- a/controllers/toolchainclustercache/namespace_predicate.go +++ b/controllers/toolchainclustercache/namespace_predicate.go @@ -4,7 +4,7 @@ import ( "sigs.k8s.io/controller-runtime/pkg/event" ) -// CreateAndUpdateOnlyPredicate will filter out all events out of the provided namespace +// namespacePredicate will filter out all events out of the provided namespace type namespacePredicate struct { namespace string }