From 89439b570fc5ae5f7bc20d4c72de89cf0c456fb6 Mon Sep 17 00:00:00 2001 From: Humble Chirammal Date: Mon, 22 May 2023 19:58:26 +0530 Subject: [PATCH] test/e2e: use agnhost latest version in the manifest https://github.com/kubernetes/kubernetes/pull/118125 The image has got promoted via: https://github.com/kubernetes/k8s.io/pull/5310 Signed-off-by: Humble Chirammal --- test/utils/image/manifest.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils/image/manifest.go b/test/utils/image/manifest.go index 0cdf4ec8c53..a3ac95c68e4 100644 --- a/test/utils/image/manifest.go +++ b/test/utils/image/manifest.go @@ -232,7 +232,7 @@ const ( func initImageConfigs(list RegistryList) (map[ImageID]Config, map[ImageID]Config) { configs := map[ImageID]Config{} - configs[Agnhost] = Config{list.PromoterE2eRegistry, "agnhost", "2.44"} + configs[Agnhost] = Config{list.PromoterE2eRegistry, "agnhost", "2.45"} configs[AgnhostPrivate] = Config{list.PrivateRegistry, "agnhost", "2.6"} configs[AuthenticatedAlpine] = Config{list.GcAuthenticatedRegistry, "alpine", "3.7"} configs[AuthenticatedWindowsNanoServer] = Config{list.GcAuthenticatedRegistry, "windows-nanoserver", "v1"}