]> git.openstreetmap.org Git - chef.git/blob - roles/foundation.rb
Update foundation wiki to mediawiki 1.43
[chef.git] / roles / foundation.rb
1 name "foundation"
2 description "Role applied to all OSMF servers"
3
4 default_attributes(
5   :memcached => {
6     :memory_limit => 400,
7     :chunk_growth_factor => 1.05,
8     :min_item_size => 5
9   },
10   :mysql => {
11     :settings => {
12       :mysqld => {
13         :innodb_buffer_pool_size => "512M",
14         :key_buffer_size => "64M",
15         :max_connections => "200",
16         :sort_buffer_size => "8M",
17         :tmp_table_size => "48M"
18       }
19     }
20   }
21 )
22
23 run_list(
24   "role[crm]"
25 )