]> git.openstreetmap.org Git - chef.git/commitdiff
Add wawel, a tile server hosted by cloudferro
authorPaul Norman <penorman@mac.com>
Fri, 30 Aug 2024 00:37:19 +0000 (17:37 -0700)
committerPaul Norman <penorman@mac.com>
Fri, 30 Aug 2024 00:37:19 +0000 (17:37 -0700)
roles/wawel.rb [new file with mode: 0644]

diff --git a/roles/wawel.rb b/roles/wawel.rb
new file mode 100644 (file)
index 0000000..e29ac63
--- /dev/null
@@ -0,0 +1,40 @@
+name "wawel"
+description "Master role applied to wawel"
+
+default_attributes(
+  :postgresql => {
+    :settings => {
+      :defaults => {
+        :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 => "16/main",
+      :postgis => "3"
+    },
+    :mapnik => "3.1",
+    :styles => {
+      :default => {
+        :tile_directories => [
+          { :name => "/store/tiles/default", :min_zoom => 0, :max_zoom => 19 }
+        ]
+      }
+    }
+  }
+)
+
+run_list(
+  "role[cloudferro-waw3-2]",
+  "role[tile]"
+)