]> git.openstreetmap.org Git - chef.git/blobdiff - roles/odin.rb
Drop roles for thorn-02 and thorn-03
[chef.git] / roles / odin.rb
index e31bc6923f408babd19303045e1a298ed3d69704..abce74926bbb19d62fc273a556e5e2221d353ccb 100644 (file)
@@ -10,6 +10,9 @@ default_attributes(
         :family => :inet,
         :address => "10.0.48.15",
         :bond => {
+          :mode => "802.3ad",
+          :lacprate => "fast",
+          :xmithashpolicy => "layer3+4",
           :slaves => %w[eno1 eno2]
         }
       },
@@ -26,9 +29,42 @@ default_attributes(
         :address => "2001:978:2:2C::172:F"
       }
     }
+  },
+  :postgresql => {
+    :settings => {
+      :defaults => {
+        :shared_buffers => "8GB",
+        :maintenance_work_mem => "7144MB",
+        :effective_cache_size => "16GB"
+      }
+    }
+  },
+  :sysctl => {
+    :postgres => {
+      :comment => "Increase shared memory for postgres",
+      :parameters => {
+        "kernel.shmmax" => 9 * 1024 * 1024 * 1024,
+        "kernel.shmall" => 9 * 1024 * 1024 * 1024 / 4096
+      }
+    }
+  },
+  :tile => {
+    :database => {
+      :cluster => "14/main",
+      :postgis => "3"
+    },
+    :mapnik => "3.1",
+    :styles => {
+      :default => {
+        :tile_directories => [
+          { :name => "/store/tiles/default", :min_zoom => 0, :max_zoom => 19 }
+        ]
+      }
+    }
   }
 )
 
 run_list(
-  "role[equinix]"
+  "role[equinix-ams]",
+  "role[tile]"
 )