X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/4ecbfbb252feb2ddc803270ad0f36b0f17cfe78d..bb6a3be37eb6b0de039c6451dcad0fe3bddbf55d:/roles/foundation.rb diff --git a/roles/foundation.rb b/roles/foundation.rb index 8e763bfce..9328d2688 100644 --- a/roles/foundation.rb +++ b/roles/foundation.rb @@ -2,21 +2,41 @@ name "foundation" description "Role applied to all OSMF servers" default_attributes( - :apache => { - :mpm => "prefork", - :timeout => 60, - :keepalive => false - }, :apt => { - :sources => [ "brightbox", "aw-drupal" ] + :sources => ["passenger"] + }, + :elasticsearch => { + :version => "6.x", + :cluster => { + :name => "foundation" + } }, :memcached => { :memory_limit => 400, :chunk_growth_factor => 1.05, :min_item_size => 5 + }, + :mysql => { + :settings => { + :mysqld => { + :innodb_buffer_pool_size => "512M", + :key_buffer_size => "64M", + :max_connections => "200", + :query_cache_size => "48M", + :query_cache_type => "1", + :sort_buffer_size => "8M", + :tmp_table_size => "48M" + } + } } ) run_list( - "recipe[civicrm]" + "role[crm]", + "role[elasticsearch]", + "recipe[foundation::wiki]", + "recipe[foundation::board]", + "recipe[foundation::dwg]", + "recipe[foundation::mwg]", + "recipe[foundation::owg]" )