Rundeck comes with several plugins out of the box. Built-in plugins are part of the core installation, and do not have an associated plugin file. Bundled plugins come packaged in a plugin file, and are installed in the libext
dir automatically at installation time.
Defines SSH Node Executor and SCP File Copier.
File: none (built-in)
Rundeck comes with four built-in Resource Model Source providers, see Resource Model Source Plugins:
File: none (built-in)
Rundeck comes with three Resource Model Format plugins, see Resource Model Source Plugins:
File: none (built-in)
Defines Script Node Executor and Script File Copier.
For more detail see Script Plugin.
Executes an external script file to perform the command, useful for developing your own plugin with the Script Plugin Development model.
File: rundeck-script-plugin-3.1.0-20190731.jar
Provides a Node Executor, File Copier, and Resource Model Source. This plugin can be used for testing.
The stub-plugin
includes these providers:
stub
for the NodeExecutor servicestub
for the FileCopier servicestub
for the ResourceModelSource service(Refer to Configuring - Node Execution to enable them.)
This plugin does not actually perform any remote file copy or command execution, instead it simply echoes the command that was supposed to be executed, and pretends to have copied a file.
This is intended for use in testing new Nodes, Jobs or Workflow sequences without affecting any actual runtime environment.
You can also test some failure scenarios by configuring the following node attributes:
stub-exec-success
=“true/false”If set to false, the stub command execution will simulate command failure
stub-result-code
Simulate the return result code from execution
You could, for example, disable or test an entire project’s workflows or jobs by simply setting the project.properties
node executor provider to stub
.
File: rundeck-stub-plugin-3.1.0-20190731.jar
A Node Step plugin which executes a command locally instead of on a target node.
File: rundeck-localexec-plugin-3.1.0-20190731.jar
Provides a Workflow Step:
File: rundeck-job-state-plugin-3.1.0-20190731.jar
Provides a Workflow Step:
File: rundeck-flow-control-plugin-3.1.0-20190731.jar
Provides an encryption storage converter for the Storage facility. Can be used to encrypt the contents of Key Storage, and Project Configuration stored in the DB or on disk.
This plugin provides password based encryption for storage contents.
It uses the Jasypt encryption library. The built in Java JCE is used unless another provider is specified, Bouncycastle can be used by specifying the ‘BC’ provider name.
Password, algorithm, provider, etc can be specified directly, or via environment variables (the *EnvVarName
properties), or Java System properties (the *SysPropName
properties).
To enable it, see Configuring - Storage Converter Plugins.
See also: Key Storage
Provider type: jasypt-encryption
The following encryption properties marked with *
can be set directly, using the property name shown, but they can all also be set dynamically using either an Environment variable, or a Java System Property.
Append either EnvVarName
for the environment variable, or SysPropName
to use the Java System Property.
If a System Property is specified: it is read in once and used by the initialization of the converter plugin, then the Java System Property is set to null so it cannot be read again.
Configuration properties:
encryptorType
Jasypt Encryptor to use. Either basic
, strong
, or custom
. Default: ‘basic’.
basic
uses algorithm PBEWithMD5AndDES
strong
requires use of the JCE Unlimited Strength policy files. (Algorithm: PBEWithMD5AndTripleDES
)custom
is required to specify the algorithm.password*
algorithm*
provider*
providerClassName*
keyObtentionIterations*
Example configuration for the Key Storage facility:
rundeck.storage.converter.1.type=jasypt-encryption
rundeck.storage.converter.1.path=keys
rundeck.storage.converter.1.config.encryptorType=custom
rundeck.storage.converter.1.config.passwordEnvVarName=ENC_PASSWORD
rundeck.storage.converter.1.config.algorithm=PBEWITHSHA256AND128BITAES-CBC-BC
rundeck.storage.converter.1.config.provider=BC
Example configuration for the Project Configuration storage facility:
rundeck.config.storage.converter.1.type=jasypt-encryption
rundeck.config.storage.converter.1.path=/
rundeck.config.storage.converter.1.config.password=sekrit
rundeck.config.storage.converter.1.config.encryptorType=custom
rundeck.config.storage.converter.1.config.algorithm=PBEWITHSHA256AND128BITAES-CBC-BC
rundeck.config.storage.converter.1.config.provider=BC
File: rundeck-jasypt-encryption-plugin-3.1.0-20190731.jar
Provides SCM Export and SCM Import providers for Git.
File: rundeck-git-plugin-3.1.0-20190731.jar
Provides a Node Step that can copy a file to a node, using the Node’s File Copier.
File: rundeck-copyfile-plugin-3.1.0-20190731.jar