X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/a7d96c8358a00088b485fadb5966eb4b231d2ff1..a6b2c51181a76edf0ea7588c27184f99143472e0:/roles/orm.rb diff --git a/roles/orm.rb b/roles/orm.rb index 66a7e6dba..9d1653a16 100644 --- a/roles/orm.rb +++ b/roles/orm.rb @@ -2,26 +2,27 @@ name "orm" description "Master role applied to orm" default_attributes( - :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", + :devices => { + :ssd_samsung => { + :comment => "Tune scheduler for SSD", + :type => "block", + :bus => "ata", + :serial => "Samsung_SSD_840_PRO_Series_*", + :attrs => { + "queue/scheduler" => "noop", + "queue/nr_requests" => "256", + "queue/read_ahead_kb" => "2048" + } + }, + :arecavoltune => { + :comment => "Tune scheduler for Areca", + :type => "block", + :bus => "scsi", + :serial => "2001b4d20*", + :attrs => { + "queue/scheduler" => "deadline", + "queue/nr_requests" => "512", + "queue/read_ahead_kb" => "2048" } } }, @@ -61,8 +62,15 @@ default_attributes( } }, :tile => { - :tile_directory => "/store/tiles", - :node_file => "/store/database/nodes" + :node_file => "/store/database/nodes", + :styles => { + :default => { + :tile_directories => [ + { :name => "/store/tiles/default-low", :min_zoom => 0, :max_zoom => 17 }, + { :name => "/store/tiles/default-high", :min_zoom => 18, :max_zoom => 19 } + ] + } + } } ) @@ -74,5 +82,6 @@ override_attributes( run_list( "role[ic]", + "role[tyan-s7010]", "role[tile]" )