Version information
released May 27th 2017
This version is compatible with:
- Puppet Enterprise 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
- Puppet >= 4.0.0 < 5.0.0
- , , , , ,
Start using this module
Add this module to your Puppetfile:
mod 'hfm-h2o', '0.1.0'
Learn more about managing modules with a PuppetfileDocumentation
hfm/h2o — version 0.1.0 May 27th 2017
h2o
Table of Contents
- Description
- Setup - The basics of getting started with h2o
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
Description
The h2o module handles installing, configuring, and running h2o.
Setup
Setup Requirements
- puppetlabs-stdlib (>= 4.0.0 < 5.0.0)
- puppetlabs-apt (>= 2.0.0 < 5.0.0)
Beginning with h2o
To install the h2o with default parameters, declare the h2o
class.
include ::h2o
Usage
Configuring h2o
class { 'h2o':
package_ensure => '2.2.2-1~ubuntu16.04.1',
}
Configuring modules from Hiera
h2o::package_ensure: '2.2.2-1~ubuntu16.04.1'
Reference
Public Classes
h2o
: Installs and runs h2o.
Private Classes
h2o::install
: Installs the h2o package.h2o::repo
: Manages the h2o repository.h2o::repo::yum
: Manages the Yum repository.h2o::repo::apt
: Manages the Apt sources.h2o::service
: Manages service.
Parameters
h2o
class
repo_ensure
: Specifies whether the h2o repository should exist. Type is the String. Default: 'present'.package_ensure
: What state the package should be in. Type is the String. Default: 'installed'.service_ensure
: Whether a service should be running. Type is the String. Default: 'running'.service_enable
: Whether a service should be enabled to start at boot. Type is the Boolean. Default: true.
Limitations
This module has been tested on:
- RedHat Enterprise Linux 6, 7
- CentOS 6, 7
- Scientific Linux 6, 7
- Fedora 22, 23, 24, 25
- Debian 7, 8
- Ubuntu 14.04, 16.04
Development
Running tests
The tinyproxy module contains tests for both rspec-puppet (unit tests) and beaker-rspec (acceptance tests) to verify functionality. For detailed information on using these tools, please see their respective documentation.
Testing quickstart
Unit tests:
$ bundle install
$ bundle exec rake test
Acceptance tests using docker:
# List available beaker nodesets
$ bundle exec rake beaker_nodes
centos7
xenial
# Run beaker acceptance tests
$ BEAKER_set=xenial bundle exec rake beaker
Dependencies
- puppetlabs/stdlib (>= 4.0.0 < 5.0.0)
- puppetlabs-apt (>= 2.0.0 < 5.0.0)
The MIT License (MIT) Copyright (c) 2017 OKUMURA Takahiro Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.