-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmetadata.rb
executable file
·64 lines (49 loc) · 1.79 KB
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
maintainer "Jim Dowling"
maintainer_email "[email protected]"
name "epipe"
license "Apache v2.0"
description "Installs/Configures a HopsFS to ElasticSearch connector"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "4.0.0"
source_url "https://github.com/hopshadoop/epipe-chef"
%w{ ubuntu debian centos }.each do |os|
supports os
end
depends 'kagent'
depends 'hops'
depends 'ndb'
depends 'elastic'
depends 'java'
recipe "epipe::install", "Installs Epipe Server"
recipe "epipe::default", "configures Epipe Server"
recipe "epipe::purge", "Deletes the Epipe Server"
attribute "epipe/default/private_ips",
:description => "Set ip addresses",
:type => "array"
attribute "epipe/user",
:description => "User to run Epipe server as",
:type => "string"
attribute "epipe/user-home",
:description => "Home directory of epipe user",
:type => "string"
attribute "epipe/version",
:description => "Version of epipe to use",
:type => "string"
attribute "epipe/url",
:description => "Url to epipe binaries",
:type => "string"
attribute "epipe/dir",
:description => "Parent directory to install epipe in (/srv is default)",
:type => "string"
attribute "epipe/pid_file",
:description => "Change the location for the pid_file.",
:type => "string"
attribute "install/dir",
:description => "Set to a base directory under which we will install.",
:type => "string"
attribute "install/user",
:description => "User to install the services as",
:type => "string"
attribute "epipe/metrics_port",
:description => "Port on which metrics are exposed",
:type => "string"