https://github.com/opentable/grunt-rundeck
invoke a rundeck job and then wait for it to finish
https://github.com/opentable/grunt-rundeck
Last synced: 12 months ago
JSON representation
invoke a rundeck job and then wait for it to finish
- Host: GitHub
- URL: https://github.com/opentable/grunt-rundeck
- Owner: opentable
- License: mit
- Archived: true
- Created: 2015-02-25T17:05:03.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-02-21T07:23:55.000Z (over 10 years ago)
- Last Synced: 2025-06-25T21:40:40.120Z (about 1 year ago)
- Language: JavaScript
- Size: 102 KB
- Stars: 0
- Watchers: 17
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# grunt-rundeck
[](https://travis-ci.org/opentable/grunt-rundeck) [](http://badge.fury.io/js/grunt-rundeck) 
Trigger a rundeck job from grunt and keep checking it until it's finished.
installation:
```npm install --save-dev grunt-rundeck```
usage:
```
grunt.initConfig({
'rundeck': {
options: {
rundeck: 'https://my.rundeck.server.com:4443', // base url where rundeck lives
apiVersion: 12,
token: 'E4rNvVRV378knO9dp3d73O0cs1kd0kCd'
},
'deploy': {
options: {
job: '568e6020-17f5-4b67-9add-0901f40f806f', // job id
params: {
foo: 'bar' // options which get passed to the job
}
}
}
}
});
```