Forge Home

slack

Slack.com integration for Puppet report processor

23,629 downloads

23,185 latest version

2.8 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.0.2 (latest)
  • 0.0.1
released Oct 25th 2014
This version is compatible with:
  • ,

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'fsalum-slack', '0.0.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add fsalum-slack
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install fsalum-slack --version 0.0.2

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

fsalum/slack — version 0.0.2 Oct 25th 2014

puppet-slack

Description

A Puppet report handler for sending notifications of puppet runs to Slack Messaging.

Installation & Usage

  1. Install puppet-slack as a module in your Puppet master's module path.

  2. You will need to create a Slack Incoming WebHooks integration at slack.com

  3. Add the class to the puppet master node:

       class { 'slack':
         slack_url            => 'YOUR_SLACK_URL',
         slack_token          => 'INCOMING_WEBHOOK_TOKEN',
         slack_channel        => '#puppet',
         slack_botname        => 'puppet',
         slack_iconurl        => 'http://puppetlabs.com/wp-content/uploads/2010/12/PL_logo_vertical_RGB_lg.jpg',
         slack_puppet_reports => 'store,http,slack',
         is_puppetmaster        => true,
       }
    

    you might also want to set slack_puppet_dir => '/etc/puppetlabs/puppet' if you use puppet enterprise.

  4. Run the Puppet client and sync the report as a plugin

Class: slack

The slack module sets up the puppetmaster or puppetserver for slack integration.

Parameters within slack:

#####slack_url

The base url to your slack page. Required. Example: 'https://yourcompany.slack.com'

#####slack_token

The secret webhook. Required.

#####slack_channel

The channel where puppet messages will be sent.
Default: '#puppet'

#####slack_botname

The name of the slack bot Default: 'puppet'

#####slack_iconurl

The icon to show next to the puppet message. Default: 'http://puppetlabs.com/wp-content/uploads/2010/12/PL_logo_vertical_RGB_lg.jpg',

#####slack_puppet_reports

Manages the puppet report in the puppet.conf. If left undef, this module will not modify the puppet.conf. Example: 'store,http,slack'

#####is_puppetmaster

The default is 'true' which means slack will manage the installation for a puppetmaster. Set to 'false' to use the new PuppetServer.

Screenshot

image

Tested

The following operating systems were tested:

  • Centos 6.5
  • Ubuntu 14.04

Author

Felipe Salum fsalum@gmail.com

Copyright and License

Copyright (C) 2012 Felipe Salum

Felipe Salum can be contacted at: fsalum@gmail.com

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.