From 95d411382f26b49ec368db2a90f3af9f7d784e94 Mon Sep 17 00:00:00 2001 From: Anish Ramasekar Date: Wed, 12 Mar 2025 16:48:15 -0700 Subject: [PATCH] Fix comment for GetServiceAccountFunc type Signed-off-by: Anish Ramasekar --- pkg/credentialprovider/plugin/plugin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/credentialprovider/plugin/plugin.go b/pkg/credentialprovider/plugin/plugin.go index bdb465e5a4a..76292c6d6ed 100644 --- a/pkg/credentialprovider/plugin/plugin.go +++ b/pkg/credentialprovider/plugin/plugin.go @@ -73,7 +73,7 @@ var ( } ) -// GetServiceAccountFunc is a function type that returns a service account token for the given namespace and name. +// GetServiceAccountFunc is a function type that returns a service account for the given namespace and name. type GetServiceAccountFunc func(namespace, name string) (*v1.ServiceAccount, error) // getServiceAccountTokenFunc is a function type that returns a service account token for the given namespace and name.