Forge Home

ambari

Puppet module to manage Apache Ambari

8,979 downloads

6,579 latest version

4.5 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.2.0 (latest)
  • 0.1.3
  • 0.1.2
  • 0.1.1
released Aug 26th 2016
This version is compatible with:
  • ,

Start using this module

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

Add this module to your Puppetfile:

mod 'unibet-ambari', '0.2.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add unibet-ambari
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install unibet-ambari --version 0.2.0

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

unibet/ambari — version 0.2.0 Aug 26th 2016

ambari

Build Status Puppet Forge Puppet Forge

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 ambari
  4. Usage - Configuration options and additional functionality
  5. Reference - An under-the-hood peek at what the module is doing and how
  6. Limitations - OS compatibility, etc.
  7. Development - Guide for contributing to the module

Overview

From the Apache Ambari docs: "The Apache Ambari project is aimed at making Hadoop management simpler by developing software for provisioning, managing, and monitoring Apache Hadoop clusters. Ambari provides an intuitive, easy-to-use Hadoop management web UI backed by its RESTful APIs."

This module aims to manage the infrastructure bits surrounding Ambari, such as package installation, service state management.

Note this module is currently work in progress, however any breaking changes will only be introduced in new minor versions.

Module Description

Current scope of this module is to provide package installation, service state management and support for running the unattended default server bootstrap.

Setup

What ambari affects

  • Installs ambari-server
  • Optionally manages package repository
  • Runs unattended ambari-server setup
  • Manages the ambari-server service

Setup Requirements

No extra setup requirements needed.

Usage

Use class ambari::server to manage the Ambari server installation. Version to install is set in the ambari class in case we expand the possibility to manage ambari agents

Reference

Class: ambari::server

class { '::ambari::server':
  use_repo   => true,
  db_backend => 'mysql'
}

Limitations

Tested on EL6

Development

Fork it, create feature branch, make sure your changes pass lint, compilation and unit tests, then create pull request.

Code / catalog testing:

bundle install
bundle exec rake lint
bundle exec rake validate
bundle exec rake spec

Integration testing:

bundle install
bundle exec kitchen test

Release Notes

N/A