This plugin allows defining lockable resources (such as printers, phones, computers, etc.) that can be used by builds. If a build requires a resource which is already locked, it will wait for the resource to be free.
- In Manage Jenkins > Configure System go to Lockable Resources Manager
- Select Add Lockable Resource
Each lockable resource has the following properties:
- Name - A mandatory name (not containing spaces!) for this particular resource, i.e.
DK_Printer_ColorA3_2342
- Description - Optional verbose description of this particular resource,
i.e.
Printers in the Danish Office
- Labels - Optional space-delimited list of Labels (A label can not containing spaces) used to
identify a pool of resources. i.e.
DK_Printers_Office Country:DK device:printer
,DK_Printer_Production
,DK_Printer_Engineering
- Reserved by - Optional reserved / locked cause. If non-empty,
the resource will be unavailable for jobs. i.e.
All printers are currently not available due to maintenance.
This option is still possible, but we recommend to use the page<jenkinsRootUrl>/lockable-resources/
A resource is always the one thing that is locked (or free or reserved).
It exists once and has an unique name (if we take the hardware example, this may be office_printer_14
).
Every resource can have multiple labels (the printer could be labeled dot-matrix-printer
, in-office-printer
, a4-printer
, etc.).
All resources with the same label form a "pool", so if you try to lock an a4-printer
, one of the resources with the label a4-printer
will be locked when it is available.
If all resources with the label a4-printer
are in use, your job waits until one is available.
This is similar to nodes and node labels.
When configuring the job, select This build requires lockable resources. Please see the help item for each field for details.
When the lock
step is used in a Pipeline, if the resource to be locked isn't
already defined in the Jenkins global configuration, an ephemeral resource is
used: These resources only exist as long as any running build is referencing
them.
Examples:
Example for scripted pipeline:
echo 'Starting'
lock('my-resource-name') {
echo 'Do something here that requires unique access to the resource'
// any other build will wait until the one locking the resource leaves this block
}
echo 'Finish'
Example for declarative pipeline:
pipeline {
agent any
stages {
stage("Build") {
steps {
lock(label: 'printer', quantity: 1, resource : null) {
echo 'printer locked'
}
}
}
}
}
lock(resource: 'staging-server', inversePrecedence: true) {
node {
servers.deploy 'staging'
}
input message: "Does ${jettyUrl}staging/ look good?"
}
lock(label: 'some_resource', variable: 'LOCKED_RESOURCE') {
echo env.LOCKED_RESOURCE
}
When multiple locks are acquired, each will be assigned to a numbered variable:
lock(label: 'some_resource', variable: 'LOCKED_RESOURCE', quantity: 2) {
// comma separated names of all acquired locks
echo env.LOCKED_RESOURCE
// first lock
echo env.LOCKED_RESOURCE0
// second lock
echo env.LOCKED_RESOURCE1
}
lock(resource: 'some_resource', skipIfLocked: true) {
echo 'Do something now or never!'
}
Detailed documentation can be found as part of the Pipeline Steps documentation.
lock(label: 'label1', extra: [[resource: 'resource1']]) {
echo 'Do something now or never!'
}
echo 'Finish'"
lock(
variable: 'var',
extra: [
[resource: 'resource4'],
[resource: 'resource2'],
[label: 'label1', quantity: 2]
]
) {
def lockedResources = env.var.split(',').sort()
echo "Resources locked: ${lockedResources}"
}
echo 'Finish'
More examples are here.
This plugin can be configured via Configuration-as-Code.
unclassified:
lockableResourcesManager:
declaredResources:
- name: "S7_1200_1"
description: "S7 PLC model 1200"
labels: "plc:S7 model:1200"
reservedBy: "Reserved due maintenance window"
- name: "S7_1200_2"
labels: "plc:S7 model:1200"
Properties description, labels and reservedBy are optional.
The page <jenkinsRootUrl>/lockable-resources/
provides an overview over all lockable-resources.
Provides an status overview over all resources and actions to change resource status.
Name | Permission | Description |
---|---|---|
Reserve | RESERVE | Reserves an available resource for currently logged user indefinitely (until that person, or some explicit scripted action, decides to release the resource). |
Unreserve | RESERVE | Un-reserves a resource that may be reserved by some person already. The user can unreserve only own resource. Administrator can unreserve any resource. |
Unlock | UNLOCK | Unlocks a resource that may be or not be locked by some job (or reserved by some user) already. |
Steal lock | STEAL | Reserves a resource that may be or not be locked by some job (or reserved by some user) already. Giving it away to currently logged user indefinitely (until that person, or some explicit scripted action, later decides to release the resource). |
Reassign | STEAL | Reserves a resource that may be or not be reserved by some person already. Giving it away to currently logged user indefinitely (until that person, or some explicit scripted action, decides to release the resource). |
Reset | UNLOCK | Reset a resource that may be reserved, locked or queued. |
Note | RESERVE | Add or edit resource note. |
Provides an overview over all lockable-resources labels.
Note: Please keep in mind, that lockable-resource-label is not the same as node-label!
Provides an overview over currently queued requests.
A request is queued by the pipeline step lock()
. When the requested resource(s) is currently in use (not free), then any new request for this resource will be added into the queue.
A resource may be requested by:
- name, such as in
lock('ABC') { ... }
- label, such as in
lock(label : 'COFFEE_MACHINE')
Note: Please keep in mind that groovy expressions are currently supported only in free-style jobs. Free-style jobs do not update this queue and therefore can not be shown in this view.
Note: An empty value in the column 'Requested at' means that this build has been started in an older plugin version - 1117.v157231b_03882 and early. In this case we cannot recognize the timestamp.
Due an issue is not possible anymore to read resource-labels from the config file org.jenkins.plugins.lockableresources.LockableResourcesManager.xml, which is generated in the release 1102.vde5663d777cf
This issue does not effect instances configured by Configuration-as-Code plugin.
A possible solution is to remove the <string>
tags from your org.jenkins.plugins.lockableresources.LockableResourcesManager.xml
config file manually, before you upgrade to new version (Keep in mind that a backup is still good idea).
Example:
change this one
<labels>
<string>tests-integration-installation</string>
</labels>
to
<labels>
tests-integration-installation
</labels>
- See GitHub Releases for recent versions.
- See the old changelog for versions 2.5 and older.
Please report issues and enhancements through the Jenkins issue tracker in GitHub
Contributions are welcome, please refer to the separate CONTRIBUTING document for details on how to proceed! Join Gitter channel to discuss your ideas with the community.
All source code is licensed under the MIT license. See LICENSE