]> git.openstreetmap.org Git - chef.git/blobdiff - roles/nominatim.rb
use a common tablespace layout for all nominatim servers
[chef.git] / roles / nominatim.rb
index a6d772e43c2859875071026d914ed11ee884ae03..86a2fe9cd23552bcf98081c71e3d45009ac39fc1 100644 (file)
@@ -22,11 +22,6 @@ default_attributes(
       :threads_per_child => 50
     }
   },
-  :chef => {
-    :client => {
-      :version => "12.1.2-1"
-    }
-  },
   :postgresql => {
     :settings => {
       :defaults => {
@@ -75,7 +70,19 @@ default_attributes(
   },
   :nominatim => {
     :enabled => true,
-    :repository => "git://git.openstreetmap.org/nominatim.git"
+    :repository => "git://git.openstreetmap.org/nominatim.git",
+    :tablespaces => {
+      "Osm2pgsql_Data" => "data",
+      "Osm2pgsql_Index" => "data",
+      "Place_Data" => "data",
+      "Place_Index" => "ssd2",
+      "Address_Data" => "data",
+      "Address_Index" => "ssd2",
+      "Search_Data" => "ssd1",
+      "Search_Index" => "ssd1",
+      "Aux_Data" => "aux",
+      "Aux_Index" => "aux"
+    }
   }
 )