Step | Description |
---|---|
Run | Create a container on the cluster and execute a specific code or command. |
Manual Input | Receive input from the user and define variables to use in the pipeline execution. |
Judgment | Request the user to make a manual decision. Used often for human-in-the-loop workflows. |
If | Define a condition and execute a specific step based on the condition. |
Fail | Terminate the execution and mark it as a failure. |
Notification | Send a notification to a specific email address. |
Trigger Dispatch | Execute another pipeline in the project. |
Manual Input
step, but it is used to request the user to make a binary decision (Yes/No). It has two output edges so that you can define the next steps based on the decision.
true
condition and the other for the false
condition.
==
, !=
, >
, <
, >=
, <=
operators.