npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rundeck-job-proxy

v1.1.1

Published

Proxy server for Rundeck job executions. Converts the request's JSON payload to job arguments (e.g. Gitlab & Github)

Downloads

29

Readme

Rundeck job proxy Build Status Test Coverage

Proxy server for Rundeck job executions. Converts the request's JSON payload to job arguments (e.g. Gitlab & Github).

Usage

To start the server run:

rundeck-job-proxy$ bin/rundeck-job-proxy.sh config.json

Calling the server with a URL parameter job will reroute to <BACKEND_URL>/api/<VERSION>/executions/<JOB>

For configuration options, see Configuration.

To create a system startup script use pm2. Start the server and run pm2 startup

nginx

# Rundeck
        location / {
                proxy_pass http://localhost:4440;
        }

# Rundeck job proxy
        location /run-job/ {
                proxy_pass http://localhost:1337;
        }

Configuration

Following configuration options are available:

  • port: Proxy server port. Defaults to 1337.
  • version: Rundeck API version to use. Defaults to 14.
  • backend: Rundeck server URL. Defaults to http://localhost:4440.
  • map: A mapping of JSON payload properties to job options. Property names represents the option name. The values are arrays which represent the property hierarchy of the mapped value. Defaults to {}.
  • filter: An object representing JSON payload properties and their values. If one of these properties does not exist in the payload or has a different value the request is not passed to the backend (HTTP status code 400 is returned). Values are compared with the strict equality operators (===).

Example configuration

{
  "port": 1337,
  "version": "14"
  "backend": "http://localhost:4440",
  "map": {
    "foo": ["foo", "bar"]
  }
}

For example payload

{
  "foo": {
    "bar": "fubar"
  }
}

Of URL

https://rundeck.foo.bar/api/14/executions?job=foo&authtoken=bar

Becomes

https://rundeck.foo.bar/api/14/executions/foo?authtoken=bar

And payload

{
  "argString": "-foo \"fubar\""
}

Development

Clone the sources and install the package using npm:

npm install

Run the following NPM script to lint, test and check coverage of the code:


npm run check

License and copyright

Copyright (c) 2016 University Of Helsinki (The National Library Of Finland)

This project's source code is licensed under the terms of GNU Affero General Public License Version 3 or any later version.