]> git.openstreetmap.org Git - chef.git/blobdiff - roles/foundation.rb
Fix incorrect alert annotation
[chef.git] / roles / foundation.rb
index 8e763bfcef71819dfe187c838652febd6d76bfaa..fb8024291d163f49403d30d253cf9041aca3957f 100644 (file)
@@ -2,21 +2,35 @@ name "foundation"
 description "Role applied to all OSMF servers"
 
 default_attributes(
-  :apache => {
-    :mpm => "prefork",
-    :timeout => 60,
-    :keepalive => false
-  },
-  :apt => {
-    :sources => [ "brightbox", "aw-drupal" ]
+  :elasticsearch => {
+    :version => "7.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",
+        :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]"
 )