voxpupuli/puppet-stackify

Name: puppet-stackify

Owner: Vox Pupuli

Description: null

Created: 2017-09-18 10:46:55.0

Updated: 2018-05-23 06:11:58.0

Pushed: 2018-05-23 06:11:57.0

Homepage: null

Size: 61

Language: Ruby

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

stackify

License Build Status Puppet Forge Puppet Forge - downloads Puppet Forge - scores

Table of Contents
  1. Description
  2. Setup - The basics of getting started with stackify
  3. Usage - Configuration options and additional functionality
  4. Reference - An under-the-hood peek at what the module is doing and how
  5. Limitations - OS compatibility, etc.
  6. Development - Guide for contributing to the module
Description

The stackify module installs and manages the stackify agent and service on Windows systems.

Stackify is an APM tools that uses an agent on nodes that need to be monitored.

Setup
Setup Requirements

The stackify module requires the following:

Beginning with stackify

To get started with the stackify module simply include the following in your manifest:

s { 'stackify':
package_ensure                        => 'present',
package_install_options_environment   => 'development',
package_install_options_activationkey => 'XXXXXXXXXXXXXXXXXXXXXXXXXX',

This example downloads and installs the latest version of the stackify agent and ensures the stackify services are running and in the desired state. After running this you should see your node pop up in the stackify servers list from the web ui.

A more advanced configuration including all attributes available:

s { 'stackify':
ackage_ensure                        => 'present',
ackage_install_options_environment   => 'development',
ackage_install_options_activationkey => 'XXXXXXXXXXXXXXXXXXXXXXXXXX',
ile_download_directory               => 'C:\\Temp',
ervice_manage                        => true,
ervice_ensure                        => true,
ervice_enable                        => true,

The above is just an example of the flexibility you have with this module. You will generally never need to specify every or even so many parameters as shown.

Usage
Install Stackify only

Sometimes you might want to install the stackify agent but not manage the service.

s { 'stackify':
package_ensure                        => 'present',
package_install_options_environment   => 'development',
package_install_options_activationkey => 'XXXXXXXXXXXXXXXXXXXXXXXXXX',
service_manage                        => false,

Reference
Classes

Parameters are optional unless otherwise noted.

stackify

Installs, configures, and manages the stackify agent.

package_ensure

Specifies whether the stackify package resource should be present. Valid options: 'present' and 'absent'.

Default: 'present'.

package_install_options_environment

Required.

Sets the stackify environment for this node.

package_install_options_activationkey

Required.

Your stackify license/activation key so the node can be associated with your stackify account.

file_download_directory

Specifies which directory to store the downloaded stackify agent installer in.

Default: 'C:\Temp'.

service_manage

Specifies whether or not to manage the desired state of the stackify windows services.

Default: true.

service_ensure

Whether or not the stackify services should be running or stopped. Valid options: true, false

Default: true.

service_enable

Whether or not the stackify services should be enabled at boot or disabled. Valid options: true, false

Default: true.

Limitations

This module is only available for Windows 2012 or 2012 R2 and works with Puppet 4.0 and later.

Development
Contributing
  1. Fork it ( https://github.com/voxpupuli/puppet-stackify/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.