From 5a81f748bf31ae8d4999eac07e145b4c323b89be Mon Sep 17 00:00:00 2001 From: Markus Lehtonen Date: Tue, 16 Jul 2024 10:05:25 +0300 Subject: [PATCH] test/e2e: set topology-updater sleep-interval in podfingerprint test Run topology-updater with short sleep-interval to try to eliminate flakiness in CI. --- test/e2e/topology_updater_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/test/e2e/topology_updater_test.go b/test/e2e/topology_updater_test.go index 92c53f7a4..5fa7a3298 100644 --- a/test/e2e/topology_updater_test.go +++ b/test/e2e/topology_updater_test.go @@ -474,6 +474,7 @@ excludeList: podSpecOpts := []testpod.SpecOption{ testpod.SpecWithContainerImage(dockerImage()), testpod.SpecWithContainerExtraArgs("-pods-fingerprint"), + testpod.SpecWithContainerExtraArgs("-sleep-interval=5s"), } topologyUpdaterDaemonSet = testds.NFDTopologyUpdater(kcfg, podSpecOpts...) })