]> git.openstreetmap.org Git - chef.git/commitdiff
Make dribble a vector tile server
authorPaul Norman <penorman@mac.com>
Sat, 2 Nov 2024 17:39:45 +0000 (10:39 -0700)
committerPaul Norman <penorman@mac.com>
Sat, 2 Nov 2024 17:39:45 +0000 (10:39 -0700)
roles/dribble.rb

index 48a2b7853aee1db3c3ac964a5653d13ebbc01b37..69e6603d3e46d3cccf92547fbf9c7233ecb93e03 100644 (file)
@@ -28,9 +28,23 @@ default_attributes(
         }
       }
     }
         }
       }
     }
+  },
+  :postgresql => {
+    :settings => {
+      :defaults => {
+        :effective_cache_size => "350GB"
+      }
+    }
+  },
+  :vectortile => {
+    :replication => {
+      :status => :disabled,
+      :tileupdate => :disabled
+    }
   }
 )
 
 run_list(
   }
 )
 
 run_list(
-  "role[equinix-ams]"
+  "role[equinix-ams]",
+  "role[vectortile]"
 )
 )