]> git.openstreetmap.org Git - chef.git/blobdiff - roles/foundation.rb
Merge interface families
[chef.git] / roles / foundation.rb
index 06c38c419ce01491df29b1d072f60ec11c3b609e..fb8024291d163f49403d30d253cf9041aca3957f 100644 (file)
@@ -2,26 +2,27 @@ name "foundation"
 description "Role applied to all OSMF servers"
 
 default_attributes(
-  :apache => {
-    :mpm => "prefork",
-    :timeout => 60,
-    :keepalive => false
-  },
-  :apt => {
-    :sources => ["passenger"]
-  },
   :elasticsearch => {
+    :version => "7.x",
     :cluster => {
       :name => "foundation"
-    },
-    :script => {
-      :disable_dynamic => false
     }
   },
   :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"
+      }
+    }
   }
 )
 
@@ -31,5 +32,5 @@ run_list(
   "recipe[foundation::wiki]",
   "recipe[foundation::board]",
   "recipe[foundation::dwg]",
-  "recipe[foundation::owg]"
+  "recipe[foundation::mwg]"
 )