]> git.openstreetmap.org Git - chef.git/blobdiff - roles/norbert.rb
tilecache: storage tuning
[chef.git] / roles / norbert.rb
index 4aab4eedef91bba450d918fd1aca526ce73ebdee..d86bd088c8b1bc741404b266a80dfe6ea57ea2a5 100644 (file)
@@ -2,49 +2,47 @@ name "norbert"
 description "Master role applied to norbert"
 
 default_attributes(
-  :accounts => {
-    :users => {
-      :yellowbkpk => { :status => :administrator },
-      :pnorman => { :status => :user }
-    }
-  },
-  :exim => {
-    :aliases => {
-      :root => "yellowbkpk"
-    }
-  },
   :networking => {
     :interfaces => {
-      :internal_ipv4 => {
-        :interface => "eth1.2801",
-        :role => :internal,
-        :family => :inet,
-        :address => "10.0.0.5"
-      },
       :external_ipv4 => {
-        :interface => "eth1.2800",
+        :interface => "ens18",
         :role => :external,
         :family => :inet,
-        :address => "193.60.236.17"
+        :address => "89.234.186.100",
+        :prefix => "27",
+        :gateway => "89.234.186.97"
+      },
+      :external_ipv6 => {
+        :interface => "ens18",
+        :role => :external,
+        :family => :inet6,
+        :address => "2a00:5884:821c::1",
+        :prefix => "48",
+        :gateway => "fe80::204:92:100:1"
       }
     }
   },
-  :sysfs => {
-    :hdd_tune => {
-      :comment => "Tune the queue for improved performance",
-      :parameters => {
-        "block/cciss\!c0d0/queue/nr_requests" => "512",
-        "block/cciss\!c0d1/queue/nr_requests" => "512",
-        "block/cciss\!c0d0/queue/scheduler" => "noop",
-        "block/cciss\!c0d1/queue/scheduler" => "noop",
-        "block/sda/queue/nr_requests" => "512",
-        "block/sda/queue/scheduler" => "deadline"
+  :squid => {
+    :cache_mem => "7500 MB",
+    :cache_dir => "coss /store/squid/coss-01 80000 block-size=8192 max-size=262144 membufs=80"
+  },
+  :nginx => {
+    :cache => {
+      :proxy => {
+        :max_size => "2048M"
       }
     }
+  },
+  :tilecache => {
+    :tile_parent => "france.render.openstreetmap.org",
+    :tile_siblings => [
+      "noomoahk.openstreetmap.org",
+      "ladon.openstreetmap.org"
+    ]
   }
 )
 
 run_list(
-  "role[ucl]",
-  "role[hp-g5]"
+  "role[grifon]",
+  "role[tilecache]"
 )