From e3dcb228b20a599507b8dbb1f657d0ddbe3a4209 Mon Sep 17 00:00:00 2001 From: Hamza Arslan Date: Wed, 27 Nov 2024 11:45:57 +0000 Subject: [PATCH] Update internal/images/images.go Co-authored-by: Graham Hammond --- internal/images/images.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/images/images.go b/internal/images/images.go index b1b22da..159a295 100644 --- a/internal/images/images.go +++ b/internal/images/images.go @@ -53,7 +53,7 @@ func GetFriendlyErrorMessage(err error, pods []string) string { errorMessage := err.Error() switch { case containsAnyOf(errorMessage, []string{"authentication", "auth", "authorized"}): - return " Authentication error. A private image could not be checked, check the docker credentials are present and up to date." + return " Authentication Error. The private image could not be queried, please check the docker credentials are present and correct." case containsAnyOf(errorMessage, []string{"no image found", "image not found"}): return " Image not found. Some pods like `" + pods[0] + "` are using an image that no longer exists." case containsAnyOf(errorMessage, []string{"no such host"}):