You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Version details: {"version":"untagged","buildDate":"2023-04-28T02:12:04Z","gitCommit":"91f2a4548832d1a669ed2cc32623ead83013fc97","gitTag":"untagged","gitTreeState":"clean","goVersion":"go1.19.8","compiler":"gc","platform":"linux/arm64"}Try submitting multiple dummy workflows until some get into "pending":
`argo submit -n argo --watch https://raw.githubusercontent.com/argoproj/argo-workflows/master/examples/artifact-passing.yaml`
Logs from the workflow controller
kubectl logs -n argo deploy/workflow-controller | grep ${workflow}
Not super relevant. The bug is clear.
Logs from in your workflow's wait container
kubectl logs -n argo -c wait -l workflows.argoproj.io/workflow=${workflow},workflow.argoproj.io/phase!=Succeeded
Not super relevant. The bug is clear.
The text was updated successfully, but these errors were encountered:
@juliev0 yes, the response from the 2nd call is incorrect. As mentioned above:
For the first call I get metadata.creationTimestamp != status.startedAt. This is expected.
For the 2nd call I get I get metadata.creationTimestamp == status.startedAt. This is NOT expected.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. If this is a mentoring request, please provide an update here. Thank you for your contributions.
Pre-requisites
:latest
What happened/what you expected to happen?
I have a workflow that was pending for a while before it started (queue was full).
When I retrieve its details using the following endpoint
https://localhost:2746/api/v1/archived-workflows/65af9a68-148c-4241-82f7-efb9e1edacc7?namespace=argo
I get
metadata.creationTimestamp
!=status.startedAt
. This is expected.However, when using the list endpoint
https://localhost:2746/api/v1/archived-workflows?namespace=argo&listOptions.fieldSelector=spec.startedAt%3E2023-03-27T22:00:00.000Z,spec.startedAt%3C2023-04-28T22:00:00.000Z&listOptions.limit=10
I get
metadata.creationTimestamp
==status.startedAt
. This is NOT expected.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.
Logs from the workflow controller
Logs from in your workflow's wait container
The text was updated successfully, but these errors were encountered: