https://github.com/tkuchiki/chef-embulk
Chef cookbook for Embulk
https://github.com/tkuchiki/chef-embulk
Last synced: 2 months ago
JSON representation
Chef cookbook for Embulk
- Host: GitHub
- URL: https://github.com/tkuchiki/chef-embulk
- Owner: tkuchiki
- License: mit
- Created: 2015-07-22T09:12:36.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-22T10:25:53.000Z (almost 10 years ago)
- Last Synced: 2025-01-25T09:11:11.360Z (4 months ago)
- Language: Ruby
- Size: 129 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Embulk Cookbook
==================Requirements
------------Java runtime environment.
### Platform
- Ubuntu
- CentOS 6
- Amazon LinuxAttributes
----------- `node[:embulk][:bin]` - embulk wrapper script path.
- `node[:embulk][:jar]` - embulk jar file path.
- `node[:embulk][:download_uri]` - embulk jar file URL.
- `node[:embulk][:lib_dir]` - embulk GEM_HOME.
- `node[:embulk][:config_dir]` - config file directory.
- `node[:embulk][:user]` - user.
- `node[:embulk][:group]` - group.
- `node[:embulk][:plugins]` - Gemfile.Gemfile
-------```
default[:embulk][:plugins] = [
{:name => "embulk-input-jdbc",},
{:name => "embulk-output-jdbc",},
{:name => "embulk-input-s3", :version => "~> 0.2.0",},
],
``````
$ cat Gemfile
source 'https://rubygems.org'gem 'embulk-input-jdbc'
gem 'embulk-output-jdbc'
gem 'embulk-input-s3', "~> 0.2.0"
```