]> git.openstreetmap.org Git - chef.git/blobdiff - roles/ladon.rb
Remove sibling lists for tile caches
[chef.git] / roles / ladon.rb
index 68cd92325496587a23edfd68eca162d039d44502..9db25557663f1ba4ba7efa79685b68c63f714d19 100644 (file)
@@ -2,6 +2,9 @@ name "ladon"
 description "Master role applied to ladon"
 
 default_attributes(
+  :hardware => {
+    :shm_size => "36g"
+  },
   :networking => {
     :interfaces => {
       :external_ipv4 => {
@@ -14,8 +17,8 @@ default_attributes(
         :bond => {
           :mode => "802.3ad",
           :miimon => "100",
-          :xmithashpolixt => "layer3+4",
-          :slaves => %w(eth0 eth1)
+          :xmithashpolicy => "layer3+4",
+          :slaves => %w[eth0 eth1]
         }
       },
       :external_ipv6 => {
@@ -27,9 +30,23 @@ default_attributes(
         :gateway => "2001:648:2ffe:4::1"
       }
     }
+  },
+  :squid => {
+    :version => 4,
+    :cache_mem => "32768 MB",
+    :cache_dir => [
+      "rock /store/squid/rock-4096 12800 swap-timeout=200 slot-size=4096 max-size=3996",
+      "rock /store/squid/rock-8192 16000 swap-timeout=200 slot-size=8192 min-size=3997 max-size=8092",
+      "rock /store/squid/rock-16384 22400 swap-timeout=200 slot-size=16384 min-size=8093 max-size=16284",
+      "rock /store/squid/rock-32768 22800 swap-timeout=200 slot-size=32768 min-size=16285 max-size=262144"
+    ]
+  },
+  :tilecache => {
+    :tile_parent => "athens.render.openstreetmap.org"
   }
 )
 
 run_list(
-  "role[grnet]"
+  "role[grnet]",
+  "role[tilecache]"
 )