Puppet Class: puppetexplorer
- Defined in:
- manifests/init.pp
Overview
Class: puppetexplorer
Manage the Puppet Explorer web interface. In the default configuration it should work if it is hosted on the same host as PuppetDB.
Parameters
- package_ensure
-
The ensure parameter of the puppetexplorer package. Default: present
- ga_tracking_id
-
Google Analytics tracking ID.
- ga_domain
-
Google Analytics domain setting. Default: auto
- puppetdb_servers
-
List of server name and URL tuples. Default: [ [‘production’, ‘/api’] ]
- node_facts
-
List of facts to display in node detail view. Default: [ ‘operatingsystem’, ‘operatingsystemrelease’, ‘manufacturer’,
'productname', 'processorcount', 'memorytotal', 'ipaddress' ]
- unresponsive_hours
-
The amount of hours since the last check-in after which a node is considered unresponsive. Default: 2
- dashboard_panels
-
Custom dashboard panels. Should be an array of hashes containing the keys name, query and type. Default: [
{ name => 'Unresponsive nodes', type => 'danger', query => '#node.report-timestamp < @"now - 2 hours"' }, { name => 'Nodes in production env', type => 'success', query => '#node.catalog-environment = production' }, { name => 'Nodes in non-production env', type => 'warning', query => '#node.catalog-environment != production' }
]
- manage_apt
-
Add apt repo for the module Defaults to true for $::osfamily Debian
- manage_yum
-
Add yum repo for the module Defaults to true for $::osfamily RedHat
- servername
-
The Apache vhost servername. Default: $::fqdn
- ssl
-
If SSL should be turned on for the Aapche vhost. Default: true
- port
-
Port of the Apache vhost. Default: 443
- proxy_pass
-
Proxy pass configuration for Apache. This is useful to proxy the API to PuppetDB through the same vhost that hosts Puppet Explorer. If they are not proxied PuppetDB needs to have the Access-Control-Allow-Origin and Access-Control-Expose-Headers “X-Records” headers. See the proxy_pass parameter of apache::vhost in puppetlabs-apache for more info on this. Default: [{ ‘path’ => ‘/api/v4’, ‘url’ => ‘localhost:8080/v4’ }]
- vhost_options
-
An additional hash of apache::vhost options, see puppetlabs-apache for more info. Can be used for configuring authentication or SSL certificates for example. Default: {}
Authors
Erik Dalen <dalen@spotify.com>
Copyright
Copyright 2014 Spotify
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'manifests/init.pp', line 90
class puppetexplorer (
$package_ensure = present,
$ga_tracking_id = 'UA-XXXXXXXX-YY',
$ga_domain = 'auto',
$puppetdb_servers = [ ['production', '/api'] ],
$node_facts = [
'operatingsystem',
'operatingsystemrelease',
'manufacturer',
'productname',
'processorcount',
'memorytotal',
'ipaddress'
],
$unresponsive_hours = 2,
$dashboard_panels = [
{
name => 'Unresponsive nodes',
type => 'danger',
query => '#node.report-timestamp < @"now - 2 hours"'
},
{
name => 'Nodes in production env',
type => 'success',
query => '#node.catalog-environment = production'
},
{
name => 'Nodes in non-production env',
type => 'warning',
query => '#node.catalog-environment != production'
}
],
$manage_apt = $::osfamily ? {
'Debian' => true,
default => false,
},
$manage_yum = $::osfamily ? {
'RedHat' => true,
default => false,
},
# Apache site options:
$servername = $::fqdn,
$ssl = true,
$port = 443,
$proxy_pass = [{ 'path' => '/api/v4', 'url' => 'http://localhost:8080/v4' }],
$vhost_options = {},
) {
include apache
if $manage_apt {
apt::source { 'puppetexplorer':
location => 'http://apt.puppetexplorer.io',
release => 'stable',
repos => 'main',
key => '3FF5E93D',
include_src => false,
}
}
if $manage_yum {
file { '/etc/pki/rpm-gpg/RPM-GPG-KEY-puppetexplorer':
ensure => file,
source => 'puppet:///modules/puppetexplorer/RPM-GPG-KEY-puppetexplorer',
before => Yumrepo['puppetexplorer'],
}
yumrepo { 'puppetexplorer':
ensure => present,
descr => 'Puppet Explorer',
baseurl => 'http://yum.puppetexplorer.io/',
enabled => true,
gpgcheck => 0,
repo_gpgcheck => 1,
gpgkey => 'file:///etc/pki/rpm-gpg/RPM-GPG-KEY-puppetexplorer',
before => Package['puppetexplorer'],
}
}
package { 'puppetexplorer':
ensure => $package_ensure,
}
file { '/usr/share/puppetexplorer/config.js':
ensure => file,
content => template('puppetexplorer/config.js.erb'),
require => Package['puppetexplorer'],
}
$base_vhost_options = {
docroot => '/usr/share/puppetexplorer',
ssl => $ssl,
port => $port,
proxy_pass => $proxy_pass,
ssl_proxyengine => true,
}
create_resources ('apache::vhost', hash([$servername, $base_vhost_options]), $vhost_options)
}
|