projects
/
chef.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Upgrade bytemark machines to chef 13
[chef.git]
/
roles
/
logstash.rb
1
name "logstash"
2
description "Role applied to all logstash servers"
3
4
default_attributes(
5
:apt => {
6
:sources => ["logstash"]
7
},
8
:elasticsearch => {
9
:cluster => {
10
:name => "logstash"
11
}
12
},
13
:kibana => {
14
:sites => {
15
:logstash => {
16
:site => "logstash.openstreetmap.org",
17
:port => 5601,
18
:elasticsearch_url => "http://127.0.0.1:9200/"
19
}
20
}
21
}
22
)
23
24
run_list(
25
"role[elasticsearch]",
26
"role[kibana]",
27
"recipe[logstash]"
28
)