Skip to content
Prev Previous commit
Next Next commit
Add Some Documentation To The Nodes And Processes Plugin
  • Loading branch information
Queen-esther01 committed Apr 25, 2021
commit 3483e51d848c1b07b753dad79fb71ad32498fd2c
14 changes: 8 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Pipeline steps locking agents and workspaces, and running external processes tha

## Documentation

The nodes and processes pluginalso called workflow durable task steps locks jenkins agents with the processes running on them, thereby adding durability to workflows. Pipelines can resume after an unforseeable restart.
The nodes and processes plugin also called workflow durable task steps locks jenkins agents with the processes running on them, thereby adding durability to workflows. This ensures Pipelines can resume after an unforseeable restart.

### Pipelines

Expand All @@ -37,7 +37,7 @@ It is possible to run Jenkins pipeline on multiple agents. Pipelines that can ru

A declarative pipeline with multiple agents:

'''
```
pipeline {
agent none
stages {
Expand Down Expand Up @@ -79,10 +79,10 @@ pipeline {
}
}
}
'''
```
A scripted pipeline with multiple agents

'''
```
stage('Test') {
node('linux') {
checkout scm
Expand All @@ -105,10 +105,12 @@ stage('Test') {
}
}
}
'''
```
Refer to this [article](https://docs.cloudbees.com/docs/admin-resources/latest/automating-with-jenkinsfile/using-multiple-agents) for a detailed explanation.

* [Changelog](https://github.com/jenkinsci/workflow-durable-task-step-plugin/blob/master/CHANGELOG.md)
## Changelog

[Changelog](https://github.com/jenkinsci/workflow-durable-task-step-plugin/blob/master/CHANGELOG.md)


## License
Expand Down