]> git.openstreetmap.org Git - chef.git/blobdiff - roles/stormfly-01.rb
Fix imager layer deletion
[chef.git] / roles / stormfly-01.rb
index ada5971f9671e8962ca0811db2e99f73874a60af..8d1830e2ed1137c14189f12bb936ad6451d0815a 100644 (file)
@@ -2,6 +2,9 @@ name "stormfly-01"
 description "Master role applied to stormfly-01"
 
 default_attributes(
+  :hardware => {
+    :shm_size => "38g"
+  },
   :networking => {
     :interfaces => {
       :external_ipv4 => {
@@ -17,10 +20,35 @@ default_attributes(
         :address => "2605:bc80:3010:700::8cde:a768"
       }
     }
+  },
+  :squid => {
+    :version => 4,
+    :cache_mem => "32768 MB",
+    :cache_dir => [
+      "rock /store/squid/rock-4096 20000 swap-timeout=200 slot-size=4096 max-size=3996",
+      "rock /store/squid/rock-8192 25000 swap-timeout=200 slot-size=8192 min-size=3997 max-size=8092",
+      "rock /store/squid/rock-16384 35000 swap-timeout=200 slot-size=16384 min-size=8093 max-size=16284",
+      "rock /store/squid/rock-32768 45000 swap-timeout=200 slot-size=32768 min-size=16285 max-size=262144"
+    ]
+  },
+  :nginx => {
+    :cache => {
+      :proxy => {
+        :max_size => "65536M"
+      }
+    }
+  },
+  :tilecache => {
+    :tile_parent => "corvallis.render.openstreetmap.org",
+    :tile_siblings => [
+      "stormfly-02.openstreetmap.org"
+    ]
   }
 )
 
 run_list(
   "role[osuosl]",
-  "role[hp-dl360-g6]"
+  "role[hp-dl360-g6]",
+  "role[geodns]",
+  "role[tilecache]"
 )