containers / conmon-rs

An OCI container runtime monitor written in Rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

`[sig-apps] CronJob should not emit unexpected warnings` fails

saschagrunert opened this issue · comments

Which jobs are failing?

CRI-O conmonrs e2e feature tests.

Which tests are failing?

Mentioned in the title, ran via: https://prow.ci.openshift.org/view/gs/origin-ci-test/pr-logs/pull/cri-o_cri-o/6220/pull-ci-cri-o-cri-o-main-ci-e2e-conmonrs/1572188830188965888

Since when has it been failing?

Since ever, reproducible with 8e4cec9

Reason for failure (if possible)

No response

Anything else we need to know?

No response

The reason for this test to fail is that pods like this do not exit and keep running:

apiVersion: v1
kind: Pod
metadata:
  name: pod
spec:
  restartPolicy: Never
  containers:
  - image: registry.k8s.io/e2e-test-images/busybox:1.29-2
    name: c

In conmon they immediately complete, in conmon-rs they still keep running forever. @rphillips @haircommander do you have any clue why this happens?