Skip to content
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

Event viewer UI not showing events for retriable worksteps #10051

Closed
3 tasks done
fsiegmund opened this issue Nov 17, 2022 · 0 comments · Fixed by #10052
Closed
3 tasks done

Event viewer UI not showing events for retriable worksteps #10051

fsiegmund opened this issue Nov 17, 2022 · 0 comments · Fixed by #10052
Labels
type/bug type/regression Regression from previous behavior (a specific type of bug)

Comments

@fsiegmund
Copy link
Contributor

Pre-requisites

  • I have double-checked my configuration
  • I can confirm the issues exists when I tested with :latest
  • I'd like to contribute the fix myself (see contributing guide)

What happened/what you expected to happen?

No events are shown when viewing events for a retriable workstep. Expected to see events.

Wrong query is submitted:

http://localhost:2746/api/v1/workflow-events/eesy-hello-world-evd-l7hr6?listOptions.fieldSelector=metadata.namespace=eesy-hello-world-evd-l7hr6,metadata.name=hello-world-evd-l7hr6

Should be:

http://localhost:2746/api/v1/workflow-events/eesy-hello-world-evd-l7hr6?listOptions.fieldSelector=metadata.namespace=eesy-hello-world-evd-l7hr6,metadata.name=hello-world-evd-r2gmf-whalesay-541665272

Bug in ui/src/app/workflows/components/workflow-details/workflow-details.tsx, line 478:

{parsedSidePanel.type === 'events' && }

Should be:

{parsedSidePanel.type === 'events' && }

Version

latest

Paste a small workflow that reproduces the issue. We must be able to run the workflow; don't enter a workflows that uses private images.

entrypoint: whalesay
templates:
- name: whalesay
  retryStrategy:
    limit: 10
  container:
    image: docker/whalesay:latest
    command: [cowsay]
    args: ["hello world"]

Logs from the workflow controller

UI

Logs from in your workflow's wait container

UI

@fsiegmund fsiegmund added type/bug type/regression Regression from previous behavior (a specific type of bug) labels Nov 17, 2022
fsiegmund added a commit to fsiegmund/argo-workflows that referenced this issue Nov 17, 2022
Signed-off-by: fsiegmund <siegmund@slb.com>
terrytangyuan pushed a commit that referenced this issue Nov 18, 2022
Signed-off-by: fsiegmund <siegmund@slb.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type/bug type/regression Regression from previous behavior (a specific type of bug)
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant