]> git.openstreetmap.org Git - chef.git/commitdiff
Add cmok server
authorPaul Norman <penorman@mac.com>
Thu, 12 Sep 2024 18:51:11 +0000 (11:51 -0700)
committerPaul Norman <penorman@mac.com>
Thu, 12 Sep 2024 18:51:11 +0000 (11:51 -0700)
This is for the new vector tile server that will be running at
CloudFerro

roles/cmok.rb [new file with mode: 0644]

diff --git a/roles/cmok.rb b/roles/cmok.rb
new file mode 100644 (file)
index 0000000..09bbffd
--- /dev/null
@@ -0,0 +1,38 @@
+name "cmok"
+description "Master role applied to cmok"
+
+default_attributes(
+  :networking => {
+    :intefaces => {
+      :external => {
+        :interface => "ens3",
+        :role => :external,
+        :inet => {
+          :prefix => "24",
+          :gateway => "10.0.0.1",
+          :public_address => "64.225.143.127"
+        }
+      }
+    }
+  },
+  :postgresql => {
+    :settings => {
+      :defaults => {
+        :effective_cache_size => "400GB"
+      }
+    }
+  },
+  :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[cloudferro-waw3-2]"
+)