From ed005f5c320c2059da3528f967e556d5123496b3 Mon Sep 17 00:00:00 2001 From: Matt Farina Date: Thu, 10 Apr 2025 13:45:02 -0400 Subject: [PATCH] Removing deprecation notice for this function. While the constructor is not used by Helm itself, it is used by SDK users and there is currently no alternative way to expose this. Signed-off-by: Matt Farina --- pkg/engine/lookup_func.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkg/engine/lookup_func.go b/pkg/engine/lookup_func.go index b7460850a..5b96dd386 100644 --- a/pkg/engine/lookup_func.go +++ b/pkg/engine/lookup_func.go @@ -35,9 +35,6 @@ type lookupFunc = func(apiversion string, resource string, namespace string, nam // NewLookupFunction returns a function for looking up objects in the cluster. // // If the resource does not exist, no error is raised. -// -// This function is considered deprecated, and will be renamed in Helm 4. It will no -// longer be a public function. func NewLookupFunction(config *rest.Config) lookupFunc { return newLookupFunction(clientProviderFromConfig{config: config}) }