All Projects → dalen → Puppet Puppetexplorer

dalen / Puppet Puppetexplorer

Puppet module for installing Puppet Explorer

Labels

Projects that are alternatives of or similar to Puppet Puppetexplorer

Selenium Puppet
a puppet module for installing the selenium server and selenium-webdriver gem
Stars: ✭ 10 (-66.67%)
Mutual labels:  puppet
Puppet Cassandra
Installs Cassandra & DataStax Agent on RHEL/Ubuntu/Debian.
Stars: ✭ 13 (-56.67%)
Mutual labels:  puppet
Puppet Project config
MOVED: Now at https://opendev.org/opendev/puppet-project_config
Stars: ✭ 20 (-33.33%)
Mutual labels:  puppet
Puppet Cloudwatchlogs
Puppet module for configuring AWS Cloudwatch Logs on Amazon Linux, Ubuntu, Red Hat & CentOS EC2 instances.
Stars: ✭ 11 (-63.33%)
Mutual labels:  puppet
Monarch
Rule over hierarchical data!
Stars: ✭ 12 (-60%)
Mutual labels:  puppet
Fuel Plugin Detach Rabbitmq
MOVED: now at https://opendev.org/x/fuel-plugin-detach-rabbitmq
Stars: ✭ 14 (-53.33%)
Mutual labels:  puppet
Ll
LL - Object-Oriented Scheme Implementation
Stars: ✭ 9 (-70%)
Mutual labels:  puppet
Puppet Windowsfeature
Library that uses ServerAdministration api that comes with Windows Server 2008 and Windows Server 2012 to add / remove windows features
Stars: ✭ 29 (-3.33%)
Mutual labels:  puppet
Runyer
Stars: ✭ 12 (-60%)
Mutual labels:  puppet
Puppetlabs Debbuilder
Module to build a debian package builder
Stars: ✭ 14 (-53.33%)
Mutual labels:  puppet
Puppet Phpbrew
Puppet module for phpbrew.
Stars: ✭ 11 (-63.33%)
Mutual labels:  puppet
Puppet Django
a puppet module for deploying django - pythonbrew - supervisor - gunicorn install
Stars: ✭ 11 (-63.33%)
Mutual labels:  puppet
Puppet Autossh
MOVED: now at https://opendev.org/x/puppet-autossh
Stars: ✭ 14 (-53.33%)
Mutual labels:  puppet
Puppet Rails
A Puppet module for managing rails
Stars: ✭ 10 (-66.67%)
Mutual labels:  puppet
Puppet Gerritbot
MOVED: Now at https://opendev.org/opendev/puppet-gerritbot
Stars: ✭ 20 (-33.33%)
Mutual labels:  puppet
Nodejs Vagrantbox
Simple nodejs box vagrant configuration (trusty64, nodejs, git, bower...)
Stars: ✭ 10 (-66.67%)
Mutual labels:  puppet
Puppet Syncthing
Syncthing module for Puppet
Stars: ✭ 13 (-56.67%)
Mutual labels:  puppet
Fuel Plugin Neutron Lbaas
Fuel plugin for LBaaS for Neutron
Stars: ✭ 30 (+0%)
Mutual labels:  puppet
Awaseroot
http://awaseroot.wordpress.com
Stars: ✭ 28 (-6.67%)
Mutual labels:  puppet
Puppet Ansible
Deploy Ansible with puppet
Stars: ✭ 14 (-53.33%)
Mutual labels:  puppet

puppetexplorer

Table of Contents

  1. Overview
  2. Parameters

Overview

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. This option requires the puppetlabs/apt module. Defaults to true for $::osfamily Debian

manage_yum

Add yum repo for the module. Defaults to true for $::osfamily RedHat

manage_selinux

Manage SELinux capabilities This option requires the jfryman/selinux module Defaults to false

webserver_class

Name of the class that manages the webserver configuration. Using '::puppetexplorer::apache' requires the puppetlabs/apache module. Defaults to '::puppetexplorer::apache'

servername

The Apache vhost servername. Default: $::fqdn

ssl

If SSL should be turned on for the Apache 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/pdb/query', 'url' => 'http://localhost:8080/pdb/query' },
  { 'path'     => '/api/pdb/meta', 'url'  => 'http://localhost:8080/pdb/meta' },
  { 'path' => '/api/metrics', 'url'   => 'http://localhost:8080/metrics' }
]
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: {}

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].