Skip to content

crayfishx/jerakia

 
 

Repository files navigation

Jerakia

Build Status Gem Version

jerakia

Join the chat at https://gitter.im/crayfishx/jerakia

A pluggable and extendable hierarchical data lookup system

Introduction

Jerakia is a tool that performs key value lookups against a variety of pluggable data stores. It does this using a top-down hierarchical set of queries that allow you to define global values and override them at different levels of a configurable hierarchy. This has many use cases, including infrastructure management where you often have configuration values defined at a global level but wish to override these values based on certain factors such as the environment or location of the request.

Key value pairs of data are looked up using a top-down search path allowing you to override values in a hierarchical way. Jerakia recieves a key to lookup a long with information about the requestor, using that information it traverses down a preconfigured hierarchy of queries until it finds the most relevant answer to return

The main goals and features of Jerakia are:

  • Hierarchical key value data lookups
  • Extendable framework to solve even the most complex edge cases
  • Decoupled from any particular configuration management system
  • Pluggable framework to encourage community plugin development

Features include:

  • YAML and JSON data source nativly included
  • HTTP REST API data source nativly included
  • Integration with Hashicorp Vault for encrypted secret lookups
  • REST server API

Usage and Documentation

Documentation is kept on the Official Website

Get help and support on the Jerakia users mailing list

Other documentation

Architecture

Jerakia is a policy based lookup system. A lookup request consists of a key, a namespace and a scope. The scope sets a list of key value pairs used for determining how the request is handled (eg: environment => development). Scopes are also pluggable and Jerakia can set the scope data in a variety of ways, by default it is passed as metadata information within the request, but other future options include PuppetDB, MCollective...etc. Each search request is passed to a pre-determined policy. The policy dictates a series of lookups that should be performed and in what order. Each lookup uses a configurable and pluggable data source to search for the lookup key. Lookups support various plugins to control and manipulate lookup requests and the final result returned from the back end data source is then optionally passed through a number of response filters before the data is finally serialized in a common format (JSON) and returned to the requestor.

Integration

There are various integration options for making requests to Jerakia.

Legacy (see jerakia-puppet ):

  • Puppet data binding terminus
  • Hiera 3.x Backend

Future integrations with other tools such as Chef and Rundeck are under development

Help and support

Raise issues on the github page, we would love to hear any feature requests that aren't currently covered by jerakia. There is also an IRC channel on freenode, #jerakia

License

Jerakia is distributed under the Apache 2.0 license

Achnowledgements

About

A pluggable and extendable data lookup system

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 94.8%
  • Shell 2.1%
  • Puppet 1.8%
  • Dockerfile 1.3%