From b9608e1a5eea81c2d124c2e7d9974917e0de49fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20W=C3=B6rmann?= Date: Tue, 12 Dec 2023 10:14:00 +0100 Subject: [PATCH] Update pkg/registry_checker/checker.go MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Stephan Krull Signed-off-by: Moritz Wörmann Signed-off-by: Moritz Woermann --- pkg/registry_checker/checker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/registry_checker/checker.go b/pkg/registry_checker/checker.go index b475a85..ccfe291 100644 --- a/pkg/registry_checker/checker.go +++ b/pkg/registry_checker/checker.go @@ -201,7 +201,7 @@ func NewRegistryChecker( _, enumerr := kubeClient.CoreV1().Secrets(namespace).List(ctx, metav1.ListOptions{}) if enumerr != nil { // Not add the secret indexer to automatic cache updater - logrus.Warn("Provided ServiceAccount does not seem to be able to list secrets. Image availability check for images in private registries not having spec.imagePullSecrets configured will fail!") + logrus.Warn("The provided ServiceAccount is not able to list secrets. The check for images in private registries requires 'spec.imagePullSecrets' to be configured correctly.") } else { rc.controllerIndexers.secretIndexer = rc.secretsInformer.Informer().GetIndexer() }