-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
task still Running
when Workflow Failed
-- no repro
#13253
Comments
A similar issue: #12703
It makes sense that marking all active nodes except nodes of exit handler as |
What is the reason for the failure of your workflow? Normally, it should be: node failed -> workflow failed. |
I have no idea, but I guass the reason is the dependency. And the following step depends on this three steps, the dependency is |
Please use text instead of images when listing logs, configurations, or code, as text is much more accessible than images.
You didn't provide a Workflow, so this is not reproducible. Please follow the issue template accurately. |
Running
when Workflow Failed
This issue has been automatically marked as stale because it has not had recent activity and needs more information. It will be closed if no further activity occurs. |
This issue has been closed due to inactivity and lack of information. If you still encounter this issue, please add the requested information and re-open. |
Running
when Workflow Failed
Running
when Workflow Failed
-- no repro
/reopen |
Are we sure this is still an issue ? 3.5.12 was released with a fix for this, could you please double check. Thanks |
I reproduced a similar issue by simulating a failure scenario for Workflow demo: apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
name: test-retry
spec:
entrypoint: main
templates:
- name: main
steps:
- - name: retry
template: retry
- name: retry
retryStrategy:
limit: 3
container:
image: python:alpine3.6
command: ["python", -c]
# fail with a 66% probability
args: ["import random; import sys; exit_code = random.choice([0, 1, 1]); sys.exit(exit_code)"] Controller logs:
|
This issue has been automatically marked as stale because it has not had recent activity and needs more information. It will be closed if no further activity occurs. |
This issue has been closed due to inactivity and lack of information. If you still encounter this issue, please add the requested information and re-open. |
Pre-requisites
:latest
image tag (i.e.quay.io/argoproj/workflow-controller:latest
) and can confirm the issue still exists on:latest
. If not, I have explained why, in detail, in my description below.What happened/what did you expect to happen?
when the workflow failed, all the step should be finished status (stop、failed or succeed), but the step is alive with running.
when we mark the workflow with failed, we should mark all the step to finished status.
Version
lastest
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.
it is related to node rescource.
Logs from the workflow controller
Logs from in your workflow's wait container
The text was updated successfully, but these errors were encountered: