-
Notifications
You must be signed in to change notification settings - Fork 208
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
workflows: Add --timestamps
to kubectl logs
#366
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The external workloads failure is a known flake: #329. |
EKS seems to have hit a new flake: #367 |
Kind also seems to have hit a variant of flake #367. https://github.com/cilium/cilium-cli/pull/366/checks?check_run_id=2905226507 In both cases, we see UDP response packets for the DNS request, but no outgoing TCP connection. Because we don't collect L7 logs, it's not clear what the DNS request was. |
Timestamps are very useful when investigating a unknown CI failure. An example where timestamps would yield us more information is for example when a job runs into a timeout, such as e.g. https://github.com/cilium/cilium-cli/runs/2904654177 where we suspect that it might have run a bit longer than usual, but it's hard to tell. Signed-off-by: Sebastian Wicki <[email protected]>
18d5cff
to
fe21ed5
Compare
Rebased to pick up c171080 hopefully helping to avoid some flakes. |
The Kind failure looks like another instance of #367. Given that this is the only failure now, I'm merging this as is - it will help us to debug other flakes. |
Timestamps are very useful when investigating a unknown CI failure. An
example where timestamps would yield us more information is for example
when a job runs into a timeout, such as e.g.
https://github.com/cilium/cilium-cli/runs/2904654177 where we suspect
that it might have run a bit longer than usual, but it's hard to tell.
Signed-off-by: Sebastian Wicki [email protected]