]> git.openstreetmap.org Git - chef.git/blobdiff - roles/cmok.rb
Turn on tile updates on dribble
[chef.git] / roles / cmok.rb
index a876d8604a7f10a4378a981ce9984218794a9a27..608abf686973ff349da547107a0f207b4cd0f171 100644 (file)
@@ -4,40 +4,37 @@ description "Master role applied to cmok"
 default_attributes(
   :networking => {
     :interfaces => {
-      :external_ipv4 => {
-        :interface => "enp4s0",
+      :external => {
+        :interface => "ens3",
         :role => :external,
-        :family => :inet,
-        :address => "31.130.201.40",
-        :prefix => "27",
-        :gateway => "31.130.201.33"
-      },
-      :external_ipv6 => {
-        :interface => "enp4s0",
-        :role => :external,
-        :family => :inet6,
-        :address => "2001:67c:2268:1005:21e:8cff:fe8c:8d3b",
-        :prefix => "64",
-        :gateway => "fe80::20c:42ff:feb2:8ff8"
+        :inet => {
+          :address => "10.0.0.228",
+          :prefix => "24",
+          :gateway => "10.0.0.1",
+          :public_address => "64.225.143.127"
+        }
       }
     }
   },
-  :squid => {
-    :cache_mem => "4096 MB",
-    :cache_dir => "coss /store/squid/coss-01 80000 block-size=8192 max-size=262144 membufs=80"
+  :postgresql => {
+    :settings => {
+      :defaults => {
+        :effective_cache_size => "400GB"
+      }
+    }
   },
-  :tilecache => {
-    :tile_parent => "minsk.render.openstreetmap.org",
-    :tile_siblings => [
-      "katie.openstreetmap.org",
-      "konqi.openstreetmap.org",
-      "ridgeback.openstreetmap.org",
-      "gorynych.openstreetmap.org"
-    ]
+  :sysctl => {
+    :postgres => {
+      :comment => "Increase shared memory for postgres",
+      :parameters => {
+        "kernel.shmmax" => 9 * 1024 * 1024 * 1024,
+        "kernel.shmall" => 9 * 1024 * 1024 * 1024 / 4096
+      }
+    }
   }
 )
 
 run_list(
-  "role[datahata]",
-  "role[tilecache]"
+  "role[cloudferro-waw3-2]",
+  "role[vectortile]"
 )