]> git.openstreetmap.org Git - chef.git/blob - roles/foundation.rb
Update carto stylesheet to v2.39.0
[chef.git] / roles / foundation.rb
1 name "foundation"
2 description "Role applied to all OSMF servers"
3
4 default_attributes(
5   :apache => {
6     :mpm => "prefork",
7     :timeout => 60,
8     :keepalive => false
9   },
10   :apt => {
11     :sources => ["passenger"]
12   },
13   :elasticsearch => {
14     :cluster => {
15       :name => "foundation"
16     },
17     :script => {
18       :disable_dynamic => false
19     }
20   },
21   :memcached => {
22     :memory_limit => 400,
23     :chunk_growth_factor => 1.05,
24     :min_item_size => 5
25   }
26 )
27
28 run_list(
29   "role[crm]",
30   "role[elasticsearch]",
31   "recipe[foundation::wiki]",
32   "recipe[foundation::board]"
33 )