Forge Home

frontier

Puppet module for Frontier configuration

13,291 downloads

7,749 latest version

2.1 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Support the Puppet Community by contributing to this module

You are welcome to contribute to this module by suggesting new features, currency updates, or fixes. Every contribution is valuable to help ensure that the module remains compatible with the latest Puppet versions and continues to meet community needs. Complete the following steps:

  1. Review the module’s contribution guidelines and any licenses. Ensure that your planned contribution aligns with the author’s standards and any legal requirements.
  2. Fork the repository on GitHub, make changes on a branch of your fork, and submit a pull request. The pull request must clearly document your proposed change.

For questions about updating the module, contact the module’s author.

Version information

  • 0.1.3 (latest)
  • 0.1.2
  • 0.1.1
  • 0.1.0
released Feb 23rd 2017

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'desalvo-frontier', '0.1.3'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add desalvo-frontier
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install desalvo-frontier --version 0.1.3

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

desalvo/frontier — version 0.1.3 Feb 23rd 2017

puppet-frontier

Puppet module for managing Frontier configurations.

Table of Contents

  1. Overview - What is the frontier module?

Overview

This module is intended to be used to install and configure Frontier services. The Frontier distributed database caching system distributes data from data sources to many clients around the world. The name comes from "N Tier" where N is any number and Tiers are layers of locations of distribution. The protocol is http-based and uses a RESTful architecture which is excellent for caching and scales well. The Frontier system uses the standard web caching tool squid to cache the http objects at every site. It is ideal for applications where there are large numbers of widely distributed clients that read basically the same data at close to the same time, in much the same way that popular websites are read by many clients.

Parameters

The following parameters are supported:

  • customize_file: the customization configuration file to be used, not used if unset
  • customize_template: the customization configuration template to be used, not used if unset
  • cache_dir: the cache directory to use
  • max_access_log: The max size of the log before rotating them
  • install_resource: set this to true if you want to instal the pacemaker FrontierSquid resource
  • resource_path: the path where to install the pacemaker resource, default "/usr/lib/ocf/resource.d/lcg"
  • $customize_params : hash that can be used to provide the customize_lines param with ... params.
  • $customize_lines : array, containing lines that will be interpreted as inline templates and will be used to fill the default customize.sh Usage

Example

This is a simple example to configure a frontier squid.

Using the frontier squid module

class { 'frontier::squid':
    customize_file => 'puppet:///modules/mymodule/customize.sh',
    cache_dir      => 'var/squid/cache'
}

Contributors

Release Notes

0.1.3

  • Update the frontier repo RPM version
  • Squid 3.5 support
  • Puppet 4 support

0.1.2

  • Add the max_access_log parameter

0.1.1

  • Change the default of cache_dir to /var/squid/cache.

0.1.0

  • Initial version.