All Projects → openstack → Puppet Monasca

openstack / Puppet Monasca

Licence: apache-2.0
OpenStack Monasca Puppet Module. Mirror of code maintained at opendev.org.

Labels

Projects that are alternatives of or similar to Puppet Monasca

Puppet Mha
The MHA module handles installing, configuring, and running MHA for MySQL.
Stars: ✭ 5 (-77.27%)
Mutual labels:  puppet
Fuel Plugin Glance Nfs
MOVED: now at https://opendev.org/x/fuel-plugin-glance-nfs
Stars: ✭ 16 (-27.27%)
Mutual labels:  puppet
Puppet Confluence
A puppet module to install confluence
Stars: ✭ 18 (-18.18%)
Mutual labels:  puppet
Legacy Hoodie Vagrant
⛔ not up-to-date
Stars: ✭ 5 (-77.27%)
Mutual labels:  puppet
Puppet Samba
Puppet samba module ⛺
Stars: ✭ 6 (-72.73%)
Mutual labels:  puppet
Vagrant Rails Dev
my vagrant rails development box
Stars: ✭ 16 (-27.27%)
Mutual labels:  puppet
Puppet Aptly
Puppet module to deploy and manage aptly, a Debian repository management tool http://www.aptly.info/
Stars: ✭ 5 (-77.27%)
Mutual labels:  puppet
Dockerfiles
Stars: ✭ 19 (-13.64%)
Mutual labels:  puppet
Puppet
Intracto puppet modules
Stars: ✭ 6 (-72.73%)
Mutual labels:  puppet
Puppet Mediawiki
This is a puppet module for deploying multi-tenant mediawiki
Stars: ✭ 17 (-22.73%)
Mutual labels:  puppet
Puppet Udev
Manages the udev package and device rules
Stars: ✭ 5 (-77.27%)
Mutual labels:  puppet
Ghtorrent Vagrant
A Vagrant box with Puppet provisioning for running GHTorrent locally
Stars: ✭ 6 (-72.73%)
Mutual labels:  puppet
Puppet Checkmk
check_mk module for puppet
Stars: ✭ 16 (-27.27%)
Mutual labels:  puppet
Sgnl05 Colorprompt
Puppet module for adding colors to your bash prompt
Stars: ✭ 5 (-77.27%)
Mutual labels:  puppet
Puppet
My collection of puppet modules - mostly licensed under GPLv3
Stars: ✭ 18 (-18.18%)
Mutual labels:  puppet
Puppet Strongswan
Manages StrongSwan on a host with Puppet
Stars: ✭ 5 (-77.27%)
Mutual labels:  puppet
Vagrant Gaudi
[NOT MAINTAINED] Gaudi on vagrant VM
Stars: ✭ 16 (-27.27%)
Mutual labels:  puppet
Puppet Zookeeper
Puppet module for managing Apache ZooKeeper
Stars: ✭ 19 (-13.64%)
Mutual labels:  puppet
Fuel Plugin External Glusterfs
MOVED: now at https://opendev.org/x/fuel-plugin-external-glusterfs
Stars: ✭ 19 (-13.64%)
Mutual labels:  puppet
Vagrant Solr
Stars: ✭ 17 (-22.73%)
Mutual labels:  puppet

puppet-monasca

Table of Contents

  1. Overview - What is the monasca module?
  2. Module Description - What does the module do?
  3. Setup - The basics of getting started with monasca
  4. Implementation - An under-the-hood peek at what the module is doing
  5. Limitations - OS compatibility, etc.
  6. Development - Guide for contributing to the module
  7. Contributors - Those with commits

Overview

The monasca module is a part of OpenStack, and is meant to assist with the installation and configuration of monasca itself, and its dependent services (mentioned below).

Module Description

Setup

What the monasca module affects:

  • monasca, monitoring as a service for OpenStack.
  • storm, Apache's distributed realtime computational system.
  • kafka, Apache's publish-subscribe messaging system.
  • influxdb, a stand-alone open-source distributes time series database.

Implementation

monasca

monasca is a combination of Puppet manifest that configures the monasca client and server configuration, as well as monasca's dependent services.

Types

monasca_config

The monasca_config provider is a child of the ini_setting provider. It allows one to write an entry in the /etc/monasca/monasca.conf file.

monasca_config { 'DEFAULT/debug' :
  value => true,
}

This will write debug=true in the [DEFAULT] section.

name

Section/setting name to manage from monasca.conf

value

The value of the setting to be defined.

secret

Whether to hide the value from Puppet logs. Defaults to false.

ensure_absent_val

If value is equal to ensure_absent_val then the resource will behave as if ensure => absent was specified. Defaults to <SERVICE DEFAULT>

agent_config

The agent_config provider is a children of the ini_setting provider. It allows one to write an entry in the /etc/monasca/agent/agent.conf file.

agent_config { 'DEFAULT/verbose' :
  value => true,
}

This will write verbose=true in the [DEFAULT] section.

name

Section/setting name to manage from agent.conf

value

The value of the setting to be defined.

secret

Whether to hide the value from Puppet logs. Defaults to false.

ensure_absent_val

If value is equal to ensure_absent_val then the resource will behave as if ensure => absent was specified. Defaults to <SERVICE DEFAULT>

Limitations

This module currently only supports debian based installs.

Development

Developer documentation for the entire puppet-openstack project.

Contributors

Release Notes

Repository

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].