Forge Home

connect_consul

Consul importer for Connect

9,221 downloads

9,221 latest version

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

Version information

  • 0.0.1 (latest)
released May 3rd 2015
This version is compatible with:
  • Puppet Enterprise >=3.4.3
  • Puppet >=3.4.3
  • , , , , , , ,

Start using this module

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

Add this module to your Puppetfile:

mod 'hajee-connect_consul', '0.0.1'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add hajee-connect_consul
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install hajee-connect_consul --version 0.0.1

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

hajee/connect_consul — version 0.0.1 May 3rd 2015

Build Status Coverage StatusCode Climate

####Table of Contents

  1. Overview
  2. Module Description - What Consul importer for Connect does and why it is useful
  3. Setup - The basics of getting started with the Consul importer for Connect
  4. Usage - Configuration options and additional functionality
  5. Troubleshooting
  6. Limitations - OS compatibility, etc.
  7. Development - Guide for contributing to the module

##Overview

Connect is a replacement for YAML in hiera when using Puppet. Connect allows you to manipulate and import data from external sources. These importers are add-on extensions for Connect.

This module contains an importer to import values and services from Consul

##Module Description

Using this module, you can import service data and data from the Consul key value store seamlessly in your Puppet manifests. This allows you to build dynamic manifests. For example if you store all information regarding font-end load balancers in Consul, you can use this Connect data source to fetch the current data from Consul and configure your applications accordingly. Changes in health of your load balancers are noticed by Consul. If Consul decides a service is not healthy anymore, it removes the server from the list of services. On every new Puppet run, Consul is queried, and the last changes in health are propagated to your Puppet manifest and resulting configuration.

##Example

With this import, you can use service information stored in Consul, to configure your system. Here's an example:

import from consul_service_store do
  redis = 'redis'
end

This code imports the service information stored in the default Consul server into the connect variable redis. Consul returns a data structure with all available information. You can use or extract this information, using this code:

with redis:: do
  service_id   = redis.ServiceID
  address      = redis.Address
  service_tags = redis.ServiceTags
  node         = redis.Node
  service_name = redis.ServiceName
  service_port = redis.ServicePort
end

The Consul value store is flatter and even easier to use:

import from consul_value_store do
  foo = 'foo'
end

This fetches the value with key foo from Consul and stores it into the connect variable foo

##Setup

###Installing the module

To use the connect hiera module, you first have to make sure it is installed.

puppet module install hajee/connect_consul

If you are using a Puppetfile, you need the following lines:

mod 'hajee-connect_consul'

###What connect_consul affects

###Setup Requirements

To use this module, you need to have the ruby gem diplomat installed:

$ gem install diplomat

The diplomat gem requires Ruby 1.9 or higher.

###Beginning with connect Consul module

##detailed description

Check the Connect Language, in a Nutshell, for more intro into the language.

##Troubleshooting

Your Consul server needs to run properly. Check the function of Consul by querying it directly. For a service use:

$ curl http://<consul_server>:8500/v1/catalog/service/<service_name>

For a key with value use:

http://localhost:8500/v1/kv/?recurse
$  curl http://<consul_server>:8500/v1/kv/<key>

##Limitations

This module is tested CentOS and Redhat. It will probably work on other Linux distributions.

##Development

This is an open source project, and contributions are welcome.

###OS support

Currently we have tested:

  • CentOS 5
  • Redhat 5

###Testing

Make sure you have:

  • rake
  • bundler

Install the necessary gems:

bundle install

And run the tests from the root of the source code:

rake spec

We are currently working on getting the acceptance test running as well.