DAGTemplate is a template subtype for directed acyclic graph templates
Name | Type | Description | Notes |
---|---|---|---|
failFast | Boolean | This flag is for DAG logic. The DAG logic has a built-in "fail fast" feature to stop scheduling new steps, as soon as it detects that one of the DAG nodes is failed. Then it waits until all DAG nodes are completed before failing the DAG itself. The FailFast flag default is true, if set to false, it will allow a DAG to run all branches of the DAG to completion (either success or failure), regardless of the failed outcomes of branches in the DAG. More info and example about this feature at argoproj/argo-workflows#1442 | [optional] |
target | String | Target are one or more names of targets to execute in a DAG | [optional] |
tasks | List<DAGTask> | Tasks are a list of DAG tasks |