The Job’s most basic feature is its ability to execute one or more steps. This sequence of steps is called a workflow.
The steps of the Job workflow are displayed when viewing a Job’s detail from a Job listing or within the Job editor form.
Workflows can be defined within the Rundeck graphical console or as an XML or YAML document that is loaded to the server.
The graphical console provides an authoring environment where steps can be added, edited, removed or reordered.
Users preferring to define Jobs in a text format should refer to the two format definitions:
It is also possible to author Jobs inside the graphical console and then export the definition as a file using the rd-jobs
shell tool (rd-jobs).
See Exporting Job definitions and Importing Job definitions.
Workflow execution is controlled by two important settings: Keepgoing and Strategy.
Keepgoing: This manages what to do if a step incurs an error:
The default is to fail immediately but depending on the procedure at hand you can choose to have the execution continue.
Strategy: Controls the order of execution of steps and command dispatch to nodes: Node-oriented and Step-oriented.
The following illustrations contrast the strategies showing how three steps proceed across two nodes.
Node-oriented flow illustrated:
1. NodeA step#1
2. " step#2
3. " step#3
4. NodeB step#1
5. " step#2
6. " step#3
Step-oriented flow illustrated:
1. NodeA step#1
2. NodeB "
3. NodeA step#2
4. NodeB "
5. NodeA step#1
6. NodeB "
The process you are automating will determine which strategy is correct, though the node-oriented flow is more commonplace.
For more complex workflow strategy rules, see Ruleset Workflow Strategy Plugin
The following sections describe how to construct a workflow as a set of steps of different types.
When creating a new Job definition, the Workflow form will be set with defaults and have no workflow steps defined. The workflow editor will have a form open asking to choose a step type to add.
To add new steps simply press the “Add a step” link inside the workflow editor form. This will prompt you with a dialog asking which kind of step you would like to add. Each kind of step has its own form. When you are done filling out the form, press “Save” to add it to the sequence. Pressing “Cancel” will close the form and leave the sequence unchanged.
New steps are always added to the end of the sequence. See Reordering steps for directions on moving steps into a new order.
Each step can have a “Description” to give it a more logical name or description to be displayed in the Rundeck GUI.
The next several sections describe the specification of each kind of workflow step.
Types of Steps
Steps in a workflow can be either Node Steps or Workflow Steps.
The order of the Workflow steps can be modified by hovering over any step and then clicking and dragging the double arrow icon to the desired position. A blue horizontal bar helps highlight the position where the Job will land.
After releasing the select Job, it will land in the desired position and the step order will be updated.
If you wish to Undo the step reordering, press the “Undo” link above the steps.
The “Redo” button can be pressed to reapply the last undone change.
Press the “Revert All Changes” button to go back to the original step order.
Each step in a Workflow can have an associated “Error Handler” action. This handler is a secondary step of any of the available types that will execute if the Workflow step fails. Error Handler steps can be used to recover the workflow from failure, or simply to execute a secondary action.
This provides a few different ways to deal with a step’s failure:
When a Workflow step has a failure, the behavior depends on whether it has an Error Handler or not, and the value of the “keepgoing” setting for the Workflow, and the value of the “keepgoingOnSuccess” for the Error Handler.
keepgoing="false"
If you define an Error Handler for a step, then the behavior changes. The handler can recover the step’s failure by executing successfully, and a secondary option “keepgoingOnSuccess” will let you override the Workflow’s “keepgoing” value if it is false.
keepgoingOnSuccess="true"
keepgoing
is ignored,keepgoing="false"
keepgoing="true"
Essentially, the result status of the Error Handler becomes the result status of its Step, if the Workflow has keepgoing="true"
or if the Error Handler overrides it with keepgoingOnSuccess="true"
. If the Error Handler succeeds, then the step is not considered to have failed. This includes scripts, commands, job references, etc. (Scripts and commands must have an exit status of 0
to return success.)
It is a good practice, when you are defining Error Handlers, to always have them fail (e.g. scripts/commands return a non-zero exit-code), unless you specifically want them to be used for Recovery.
Note, Error-handlers can be attached to either Node Steps or Workflow Steps, and the type of step and the Strategy of the Workflow determines what type of Error-handler steps can be attached to a step. The only restriction is in the case that the Workflow is “Node-oriented”, which means that the workflow is executed independently for each node. In this case, Node Steps can only have other Node steps as Error Handlers. In other cases, the Error Handler can be other Workflow steps.
To add an error handler press the “+ error handler” button on the step you want to handle. The form presented includes the normal set of steps you can add to a workflow.
The example below shows an error handler that calls a script by URL.
When the Error-handler step is executed, its execution context will contain some information about the nature of the failure that occurred for the original step.
In the case where a Node Step has a Workflow Step as an Error Handler, then the failure data for multiple nodes is rolled up into a single failure reason to be used by the Workflow Step.
See the section on Context Variables for more information.
Once the Workflow steps have been defined and order, changes are permanently saved after pressing the “Create” button if new or the “Update” button if the Job is being modified.
When a Job step is executed, it has a set of “context” variables that you can access in the Job step. There are several sets of context variables, including: the Job context job
, the Node context node
, and the Option context option
.
Job context variables:
job.name
: Name of the Jobjob.group
: Group of the Jobjob.id
: ID of the Jobjob.execid
: ID of the current Executionjob.executionType
: Execution type, can be user
, scheduled
or user-scheduled
for Run Job Later
executionsjob.username
: Username of the user executing the Jobjob.project
: Project namejob.loglevel
: Logging level, one of: ‘ERROR’,‘WARN’,‘INFO’,‘VERBOSE’,‘DEBUG’job.user.email
: Executing user’s email address set in User profile.job.retryAttempt
: A number indicating the attempt, if this execution is a retry.job.wasRetry
: true
if this execution is a retry, otherwise false
. See: retry.job.threadcount
: Threadcount (number of nodes run at once) of the Jobjob.filter
: The filter used to select the nodes for this job (if applicable)Node context variables:
node.name
: Name of the Node being executed onnode.hostname
: Hostname of the Nodenode.username
: Username of the remote usernode.description
: Description of the nodenode.tags
: Comma-separated list of tagsnode.os-*
: OS properties of the Node: name
,version
,arch
,family
node.*
: All Node attributes defined on the Node.Additional Error-handler context variables:
result.reason
: A code indicating the reason the step failed
NonZeroResultCode
- the execution returned a non-zero codeSSHProtocolFailure
- SSH protocol failureHostNotFound
- host not foundConnectionTimeout
- connection timeoutConnectionFailure
- connection failure (e.g. refused)IOFailure
- IO errorAuthenticationFailure
- authentication was refused or incorrectJobFailed
- referenced Job workflow failedNotFound
- referenced Job not foundUnauthorized
- referenced Job not authorizedInvalidOptions
- referenced Job input options invalidNoMatchedNodes
- referenced Job node dispatch filters had no matchNodeDispatchFailure
- one or more nodes failed the stepresult.message
: A string describing the failureresult.resultCode
: Exit code from an execution (if available)result.failedNodes
: Comma-separated list of node names that failed for a NodeDispatchFailure
Option context variables are referred to as option.NAME
(more about Job Options.)
Context variables can be used in a few ways in a Job step, with slightly different syntaxes:
`${ctx.name}`
`@ctx.name@`
Note, The “Inline Script Content” variable expansion is not available for “Script File” steps. The Script File is not rewritten at all when used for execution.
Note: This can be disabled, see Administrator Guide > Configuration File Reference > framework.properties.
`$RD_CTX_NAME`
The syntax for Environment variables is that all letters become uppercase, punctuation is replaced with underscore, and the name is prefixed with RD_
.
Note, See the chapter Plugins - SSH - Passing Environment Variables Through Remote Commands for information about requirements of the SSH server.