embulk
This puppet module install anda configure embulk and its plugins.
Version information
released Oct 3rd 2018
This version is compatible with:
- Puppet Enterprise 2018.1.x, 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
- Puppet >= 4.7.0 < 6.0.0
- , , , ,
Start using this module
Add this module to your Puppetfile:
mod 'hfm-embulk', '3.2.0'
Learn more about managing modules with a PuppetfileDocumentation
hfm/embulk — version 3.2.0 Oct 3rd 2018
puppet-embulk
Table of Contents
- Overview
- Setup - The basics of getting started with embulk
- Usage - Configuration options and additional functionality
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
Overview
Manage installation of embulk/embulk and its plugins with Puppet on CentOS.
Setup
puppet module install hfm-embulk
or using rodjek/librarian-puppet:
mod 'hfm-embulk'
and execute librarian-puppet install
.
Used modules
Usage
Installation of embulk
include ::embulk
# Default latest version
class { '::embulk': }
# Or you can specify the version of embulk.
class { '::embulk':
ensure => '0.8.1',
}
# Or you can specify the user of embulk.
class { '::embulk':
user => 'embulk_user',
}
Installation of embulk plugins
Using embulk gem
command to install embulk plugins like the following:
include ::embulk
::embulk::plugin {
# Enable to use an array
[
'embulk-parser-ltsv',
'embulk-filter-insert',
]:
ensure => present;
# You can use latest to be up-to-date version.
# Default to present.
'embulk-output-bigquery':
ensure => latest;
}
Limitations
Tested on:
- CentOS 5.11
- CentOS 6.6
- CentOS 7.2.1511
- Ubuntu 14.04
- Ubuntu 12.04
- Debian 8
- Debian 7
- Debian 6
CHANGELOG
v3.2.0 (2018-10-03)
v3.1.0 (2018-10-03)
v3.0.0 (2018-08-04)
v2.1.0 (2017-11-27)
- Specify absolute path #8 (hfm)
- Support Puppet 4.9.0 or later #7 (hfm)
- data_provider is deprecated #6 (hfm)
v2.0.1 (2017/11/21)
- Using puppetlabs-java #5
- Support Puppet 4.9 or later
- Added supported os
v1.2.0
Support Ubunt 12.04 and Debian 6 and 7.
v1.1.0
Support Ubuntu 14.04 and Debian 8.
v1.0.1 ~ v1.0.3
Fix for Ruby 1.8.7
v1.0.0
Implement embulk::plugin
.
v0.2.1
If you specify ensure => present
, using the latest version of embulk.
v0.2.0
Remove a variable of $version
because it's overlapped with $ensure
.
v0.1.1 ~ v0.1.5
Change metadata.json to specify supported os.
v0.1.0
Initial release
Dependencies
- puppetlabs-stdlib (>= 4.0.0 < 6.0.0)
- puppetlabs-java (>= 2.0.0 < 4.0.0)
- puppet-wget (>= 2.0.0 < 3.0.0)
The MIT License (MIT) Copyright (c) 2016 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.