Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fred06fr/jenkins-udeploy-plugin
A plugin for IBM Urban Code Deploy that adds process steps to control Jenkins, launching jobs and executing scripts
https://github.com/fred06fr/jenkins-udeploy-plugin
Last synced: 3 months ago
JSON representation
A plugin for IBM Urban Code Deploy that adds process steps to control Jenkins, launching jobs and executing scripts
- Host: GitHub
- URL: https://github.com/fred06fr/jenkins-udeploy-plugin
- Owner: fred06fr
- License: apache-2.0
- Created: 2014-12-16T10:13:22.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-15T16:44:40.000Z (about 9 years ago)
- Last Synced: 2024-06-29T09:34:05.544Z (5 months ago)
- Language: Groovy
- Size: 207 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
jenkins-udeploy-plugin
======================## What is it?
A plugin for IBM Urban Code Deploy that adds process steps to control Jenkins, launching jobs and executing scripts.
A typical use case is to launch tests after a deployment.
You can deploy your application using IBM Urban Code Deploy (UCD) as usual, then use this plugin to trigger some test jobs in Jenkins that will validate this deployment.
The job result status (SUCCESS, FAILED, UNSTABLE) is available as an output property in the UCD step. You can use it for example to set a status on the component(s) version(s) you just deployed.
This way, UCD is fully master and stores all statuses, while you keep your good old Jenkins to run the tests.This plugin provides two steps:
- a step to run a jenkins job, giving it some parameters and getting back the job result status. Timeout handling is included.
- a step to run a jenkins system groovy script (as in the script console, see https://wiki.jenkins-ci.org/display/JENKINS/Jenkins+Script+Console), basically allowing you to control Jenkins in any wayThe plugin assumes your Jenkins is secured (we are in real life, aren't we?). So you will need to feed in UCD your jenkins server URL, as well as a user name and password (who has permission to run jobs and scripts in Jenkins).
_Notice that there is another UCD-Jenkins plugin (https://developer.ibm.com/urbancode/plugin/jenkins/) that provides integration on the other side, to publish Jenkins builds to UCD_
## How to build and use?
You can easily build the plugin using Maven.
Just run "mvn install -DskipTests" in the root directory.
The built plugin is then available in "target/jenkins-udeploy-plugin-1.0-SNAPSHOT-plugin.zip", ready to import in Urban Code Deploy as usual.If you want to run unit tests, you need to edit "src/test/resources/testPluginInput.properties" before to setup your credentials, etc.