Skip to content
This repository has been archived by the owner on Oct 26, 2021. It is now read-only.

Latest commit

 

History

History
25 lines (18 loc) · 1.63 KB

DAGTask.md

File metadata and controls

25 lines (18 loc) · 1.63 KB

DAGTask

DAGTask represents a node in the graph during DAG execution

Properties

Name Type Description Notes
arguments Arguments [optional]
continueOn ContinueOn [optional]
dependencies List<String> Dependencies are name of other targets which this depends on [optional]
depends String Depends are name of other targets which this depends on [optional]
hooks Map<String, LifecycleHook> Hooks hold the lifecycle hook which is invoked at lifecycle of task, irrespective of the success, failure, or error status of the primary task [optional]
name String Name is the name of the target
onExit String OnExit is a template reference which is invoked at the end of the template, irrespective of the success, failure, or error of the primary template. DEPRECATED: Use Hooks[exit].Template instead. [optional]
template String Name of template to execute [optional]
templateRef TemplateRef [optional]
when String When is an expression in which the task should conditionally execute [optional]
withItems List<Object> WithItems expands a task into multiple parallel tasks from the items in the list [optional]
withParam String WithParam expands a task into multiple parallel tasks from the value in the parameter, which is expected to be a JSON list. [optional]
withSequence Sequence [optional]