Created
December 19, 2018 22:32
-
-
Save dhollinger/9a8a8a928d61ae37317bc54496c6bdd1 to your computer and use it in GitHub Desktop.
puppet_webhook output
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Authentication | |
protected: true | |
user: puppet | |
pass: puppet | |
# Mcollective | |
client_cfg: "/etc/puppetlabs/mcollective/server.cfg" | |
client_timeout: "120" | |
use_mco_ruby: false | |
use_mcollective: false | |
discovery_timeout: '10' | |
# Chatops Notification | |
chatops: false | |
# Slack Example | |
# chatops_service: 'slack' | |
# chatops_channel: '#general' | |
# chatops_user: 'r10k' | |
# chatops_url: 'https://hooks.slack.com/services/<hash>/<hash>/<hash>' | |
# R10k | |
default_branch: production | |
ignore_environments: [] | |
prefix_command: '' | |
r10k_deploy_arguments: "-pv" | |
allow_uppercase: true | |
command_prefix: 'umask 0022;' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
➞ ~ : puppet_webhook -c ~/server.yml | |
WARNING: If you plan to load any of ActiveSupport's core extensions to Hash, be | |
sure to do so *before* loading Sinatra::Application or Sinatra::Base. If not, | |
you may disregard this warning. | |
[2018-12-19 16:30:02] INFO WEBrick 1.4.2 | |
[2018-12-19 16:30:02] INFO ruby 2.5.1 (2018-03-29) [x86_64-darwin18] | |
[2018-12-19 16:30:02] INFO WEBrick::HTTPServer#start: pid=27821 port=8088 | |
INFO -> Using Puppetfile '/Users/dhollinger/.puppetlabs/modules/test_2/Puppetfile' | |
INFO -> Using Puppetfile '/Users/dhollinger/.puppetlabs/modules/webhook_test/Puppetfile' | |
INFO -> Using Puppetfile '/Users/dhollinger/.puppetlabs/modules/webhooktest/Puppetfile' | |
INFO -> Deploying environment /Users/dhollinger/.puppetlabs/modules/webhook_test | |
INFO -> Environment webhook_test is now at 4a32bf94c28e979aaa0495773c5ce4e2b5661649 | |
INFO -> Deploying Puppetfile content /Users/dhollinger/.puppetlabs/modules/webhook_test/modules/stdlib | |
127.0.0.1 - - [19/Dec/2018:16:30:05 CST] "POST /payload HTTP/1.1" 200 0 | |
- -> /payload | |
INFO -> Deploying Puppetfile content /Users/dhollinger/.puppetlabs/modules/webhook_test/modules/concat | |
INFO -> Deploying Puppetfile content /Users/dhollinger/.puppetlabs/modules/webhook_test/modules/firewall | |
INFO -> Deploying Puppetfile content /Users/dhollinger/.puppetlabs/modules/webhook_test/modules/network | |
INFO -> Deploying Puppetfile content /Users/dhollinger/.puppetlabs/modules/webhook_test/modules/rsyslog | |
INFO -> Deploying Puppetfile content /Users/dhollinger/.puppetlabs/modules/webhook_test/modules/autofs | |
INFO -> Deploying Puppetfile content /Users/dhollinger/.puppetlabs/modules/webhook_test/modules/r10k | |
INFO -> Deploying Puppetfile content /Users/dhollinger/.puppetlabs/modules/webhook_test/modules/aws | |
INFO -> Deploying Puppetfile content /Users/dhollinger/.puppetlabs/modules/webhook_test/modules/docker |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
sources: | |
main: | |
remote: '[email protected]:dhollinger/controlrepo.git' | |
basedir: '/Users/dhollinger/.puppetlabs/modules' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
server_type: simple | |
logfile: "/Users/dhollinger/webhook/webhook.log" | |
loglevel: DEBUG | |
pidfile: "/Users/dhollinger/webhook/puppet_webhook.pid" | |
port: 8088 | |
enable_ssl: false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment