Skip to content

Commit 3841e1d

Browse files
Merge pull request #17374 from bparees/scl_logs
Automatic merge from submit-queue. poll for log output in extended tests there's some lag time between the pod being reported and the log containing the expected output, this adds tolerance for that.
2 parents 440924f + 9f67341 commit 3841e1d

File tree

1 file changed

+12
-2
lines changed
  • test/extended/image_ecosystem

1 file changed

+12
-2
lines changed

test/extended/image_ecosystem/scl.go

+12-2
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,19 @@ func defineTest(image string, t tc, oc *exutil.CLI) {
8080
o.Expect(err).To(o.Equal(conditions.ErrPodCompleted))
8181
}
8282

83-
log, err := oc.KubeClient().CoreV1().Pods(oc.Namespace()).GetLogs(pod.Name, &kapiv1.PodLogOptions{}).DoRaw()
83+
g.By("checking the log of the pod")
84+
err = wait.Poll(1*time.Second, 10*time.Second, func() (bool, error) {
85+
log, err := oc.KubeClient().CoreV1().Pods(oc.Namespace()).GetLogs(pod.Name, &kapiv1.PodLogOptions{}).DoRaw()
86+
if err != nil {
87+
return false, err
88+
}
89+
e2e.Logf("got log %v from pod %v", string(log), pod.Name)
90+
if strings.Contains(string(log), t.Expected) {
91+
return true, nil
92+
}
93+
return false, nil
94+
})
8495
o.Expect(err).NotTo(o.HaveOccurred())
85-
o.Expect(string(log)).To(o.ContainSubstring(t.Expected))
8696

8797
g.By(fmt.Sprintf("creating a sample pod for %q", t.DockerImageReference))
8898
pod = exutil.GetPodForContainer(kapiv1.Container{

0 commit comments

Comments
 (0)