Any solution for retry an argo workflow from a specified steps. #7534
|
Is there a way to retry a failed workflow from a specified step? The case is that a workflow failed due to the wrong artifact generated by the early step before the failed step. I clicked the retry button, it always retried the failed step using the same wrong artifact which is hopeless. Is there a possible way to retry the workflow from the generate_artifact step? For example, set a flag for the generate_artifact step, so that I can retry it. Or put several steps in a step set, then the retry action is acted to the step set. |
Replies: 2 comments 10 replies
|
You can use |
|
We are also experiencing this issue. When retrying after failure, the workflow hangs in "Running" mode. |
You can use
argo retry --restart-successfuland--node-field-selectorto select nodes that need to be re-run when retrying (even when they are successful).