Skip to content

JoanMa/eyp-puppet

 
 

Repository files navigation

puppet

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Setup - The basics of getting started with puppet
  4. Usage - Configuration options and additional functionality
  5. Reference - An under-the-hood peek at what the module is doing and how
  6. Development - Guide for contributing to the module

Overview

puppet agent management

Module Description

If applicable, this section should have a brief description of the technology the module integrates with and what that integration enables. This section should answer the questions: "What does this module do?" and "Why would I use it?"

If your module has a range of functionality (installation, configuration, management, etc.) this is the time to mention it.

Setup

What puppet affects

  • A list of files, packages, services, or operations that the module will alter, impact, or execute on the system it's installed on.
  • This is a great place to stick any warnings.
  • Can be in list or paragraph form.

Beginning with puppet

class { 'puppet::agent':
  puppetmaster       => 'demoserver',
  puppetmasterport   => '1234',
  puppetenv          => 'tstenv',
}

Usage

multiple agents

To be able to have multiple agents we can use a cronjobs:

puppet::agent::cron { 'puppet.systemadmin.es':
  masterport => '8140',
}

Reference

Here, list the classes, types, providers, facts, etc contained in your module. This section should include all of the under-the-hood workings of your module so people know what the module is touching on their system but don't need to mess with things. (We are working on automating this section!)

Development

We are pushing to have acceptance testing in place, so any new feature should have some tests to check both presence and absence of any feature

TODO

  • improve configuration options

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Added some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

About

puppet client management

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Puppet 50.3%
  • Shell 25.9%
  • Ruby 18.1%
  • HTML 5.7%