From 8b48ff358457e56843525e4baadadc74dad3b27f Mon Sep 17 00:00:00 2001 From: Maciej Szulik Date: Thu, 2 Feb 2023 19:00:24 +0100 Subject: [PATCH] Don't explicitly set image version in tests Image versions are already explicitly set in our manifests configuration, so tests should not be setting these values to ensure we're using the same versions across the board. --- test/e2e/node/security_context.go | 1 - 1 file changed, 1 deletion(-) diff --git a/test/e2e/node/security_context.go b/test/e2e/node/security_context.go index 87b7dcc163c..9e12d1db4bf 100644 --- a/test/e2e/node/security_context.go +++ b/test/e2e/node/security_context.go @@ -83,7 +83,6 @@ var _ = SIGDescribe("Security Context", func() { gidDefinedInImage := int64(50000) supplementalGroup := int64(60000) agnhost := imageutils.GetConfig(imageutils.Agnhost) - (&agnhost).SetVersion("2.43") pod := scTestPod(false, false) pod.Spec.Containers[0].Image = agnhost.GetE2EImage() pod.Spec.Containers[0].Command = []string{"id", "-G"}