NOTE: This project has been archived. It is being replaced by a Go-based implemetation - Webhook Go
puppet_webhook is a Sinatra-based application receiving REST-based calls to trigger Puppet and r10k-related tasks such as:
- Webhooks from Source Code systems to trigger r10k environment and module deploys
- Send notifications via Slack
- Ruby 2.5.0 or greater (since version 2. 1.x works with Ruby 2.4.0)
- Puppet 5.5.0 or greater
- r10k gem
- Optional: MCollective and MCollective-r10k (Provides one form of multi-master syncronization)
- Currently Mcollective-r10k is only available from puppet-r10k
- If you don't want to use MCollective, you could install this webhook on each compile master instead
Please see the pre-2.x documentation if using the old gem-based puppet_webhook.
Add the Voxpupuli GPG key and repository:
wget -qO - "https://bintray.com/user/downloadSubjectPublicKey?username=voxpupuli" | sudo apt-key add -
echo "deb https://dl.bintray.com/voxpupuli/deb $(awk -F= '/VERSION_CODENAME=/ {print $2}' /etc/os-release) main" | sudo tee -a /etc/apt/sources.list.d/voxpupuli.list
sudo apt update
Install puppet_webhook
sudo apt install puppet-webhook
Download the voxpupuli.repo file
wget https://raw.githubusercontent.com/voxpupuli/puppet_webhook/master/build/repos/voxpupuli.repo -o voxpupuli.repo
sudo mv voxpupuli.repo /etc/yum.repos.d/voxpupuli.repo
Install puppet_webhook
yum install puppet-webhook
Experience with Docker and Docker Compose are assumed. The Docker Compose setup expects that the Webhook API container volumes will have access to the codedir, either via NFS or on system.
- Download the sample
docker-compose.yml
file from the github repo:
$ wget -O docker-compose.yml https://raw.githubusercontent.com/voxpupuli/puppet_webhook/master/build/docker/docker-compose.yml
- Edit the image, environment, and volumes keys based on your own needs.
- run
docker-compose up
This assumes you already have the correct Ruby version installed in the system or via a tool like rbenv
, rvm
, or asdf
.
- Download the latest release from the Releases page.
- Extract the tarball into the desired directory:
$ tar -xzvf puppet_webhook-latest.tar.gz -C /opt/puppet_webhook
- Enter the install directory and install dependencies:
$ cd /opt/puppet_webhook && bundle install
- Start the process:
$ bundle exec puma config.ru
Puppet Webhook API configuration is maintained by the config.yml file in the APP_ROOT/config
directory. Many options have sane defaults applied, but a few are required for base functionality.
type: Boolean description: Enforces authentication via basic auth or API token. default: false
type: String
description: Username to use for Basic Authorization. Optional
default: nil
type: String
description: Password to use for Basic Authorization. Optional
default: nil
type: Boolean description: Send notifications to a chatops service. Required. default: false
type: String
description: Which chatops service to send to. Only slack
and rocketchat
supported at this time.
default: nil
type: String
description: Webhook/Notification url to send to.
default: nil
type: String
description: Channel/Room to post notification to.
default: nil
type: String
description: User to post notification as.
default: nil
type: String
description: Any additional options to pass the chatops service.
default: nil
type: String
description: Default controlrepo branch to use if none specified.
Default: production
type: Array[String] description: Any environments to ignore. Default: []
type: Boolean description: Allow uppercase within the name of the module or environment passed to the API. default: true
type: String
description: The Redis connection url to use to connect to your Redis database.
default: redis://localhost:6379/0
type: String
description: The password to authenticate to Redis with.
default: nil
type: String
description: Set the Logging level for the application. Valid values are debug
, error
, warn
, fatal
, and info
.
default warn
This API provides two endpoints that need to be called:
/api/v1/r10k/module
for every moduleapi/v1/r10k/environment
for the control repository
In GitHub, set setup looks like this:
If you configured basic authentication, you need to add the username and password to the URL.