]> git.openstreetmap.org Git - chef.git/blobdiff - roles/orm.rb
Bring OSQA backups under chef control
[chef.git] / roles / orm.rb
index 2a834b101415d0813a0f45c16889e07e1ef4b56e..9d1653a16ad471705494477a89cb57ace85d71fc 100644 (file)
@@ -3,77 +3,26 @@ description "Master role applied to orm"
 
 default_attributes(
   :devices => {
-    :ssdvol1tune => {
+    :ssd_samsung => {
       :comment => "Tune scheduler for SSD",
       :type => "block",
       :bus => "ata",
-      :serial => "Samsung_SSD_840_PRO_Series_S12SNEAD411116P",
+      :serial => "Samsung_SSD_840_PRO_Series_*",
       :attrs => {
         "queue/scheduler" => "noop",
-        "queue/nr_requests" => "256"
+        "queue/nr_requests" => "256",
+        "queue/read_ahead_kb" => "2048"
       }
     },
-    :ssdvol2tune => {
-      :comment => "Tune scheduler for SSD",
-      :type => "block",
-      :bus => "ata",
-      :serial => "Samsung_SSD_840_PRO_Series_S12SNEAD411110E",
-      :attrs => {
-        "queue/scheduler" => "noop",
-        "queue/nr_requests" => "256"
-      }
-    },
-    :arecavol1tune => {
-      :comment => "Tune scheduler for Areca",
-      :type => "block",
-      :bus => "scsi",
-      :serial => "2001b4d2049002450",
-      :attrs => {
-        "queue/scheduler" => "deadline",
-        "queue/nr_requests" => "512"
-      }
-    },
-    :arecavol2tune => {
+    :arecavoltune => {
       :comment => "Tune scheduler for Areca",
       :type => "block",
       :bus => "scsi",
-      :serial => "2001b4d2037331399",
+      :serial => "2001b4d20*",
       :attrs => {
         "queue/scheduler" => "deadline",
-        "queue/nr_requests" => "512"
-      }
-    },
-    :arecavol3tune => {
-      :comment => "Tune scheduler for Areca",
-      :type => "block",
-      :bus => "scsi",
-      :serial => "2001b4d2060246956",
-      :attrs => {
-        "queue/scheduler" => "deadline",
-        "queue/nr_requests" => "512"
-      }
-    }
-  },
-  :munin => {
-    :plugins => {
-      :ipmi_fans => {
-        :Sys6 => { :graph => "no" },
-        :Sys8 => { :graph => "no" }
-      },
-      :sensors_fan => {
-        :fan3 => { :graph => "no" },
-        :fan4 => { :graph => "no" },
-        :fan5 => { :graph => "no" },
-        :fan6 => { :graph => "no" },
-        :fan7 => { :graph => "no" },
-        :fan8 => { :graph => "no" },
-        :fan9 => { :graph => "no" },
-        :fan10 => { :graph => "no" },
-        :fan11 => { :graph => "no" },
-        :fan12 => { :graph => "no" }
-      },
-      :sensors_volt => {
-        :contacts => "null",
+        "queue/nr_requests" => "512",
+        "queue/read_ahead_kb" => "2048"
       }
     }
   },
@@ -133,5 +82,6 @@ override_attributes(
 
 run_list(
   "role[ic]",
+  "role[tyan-s7010]",
   "role[tile]"
 )