1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2024-12-14 11:57:51 +00:00

test/e2e: set topology-updater sleep-interval in podfingerprint test

Run topology-updater with short sleep-interval to try to eliminate
flakiness in CI.
This commit is contained in:
Markus Lehtonen 2024-07-16 10:05:25 +03:00
parent 25ffe9c178
commit 5a81f748bf

View file

@ -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...)
})