DAG dependencies
with continueOn
#13572
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm encountering an issue with my Argo Workflows pipeline. I have multiple tasks, and one of them depends on the completion of all the others. However, when one of the dependent tasks fails, the dependent step is not triggered, even though I have set
continueOn: failed: true
on the dependencies. The goal is for the example task to run even if one or more of the dependent tasks fail, but it’s not working as expected. Whenever any of the dependencies fail, the dependent task does not execute at all.Could anyone help me understand why this is happening or suggest a better way to configure this behavior?
Beta Was this translation helpful? Give feedback.
All reactions