X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/6f26052c85ad56d492fd52d8d9ef1096a9147974..0993dbc450a5678cfcea86dd71cf5873b18d86f3:/roles/orm.rb diff --git a/roles/orm.rb b/roles/orm.rb index 9f2694fe6..75e2e1252 100644 --- a/roles/orm.rb +++ b/roles/orm.rb @@ -2,6 +2,9 @@ name "orm" description "Master role applied to orm" default_attributes( + :apt => { + :sources => ["postgresql"] + }, :devices => { :ssd_samsung => { :comment => "Tune scheduler for SSD", @@ -26,29 +29,6 @@ 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", - } - } - }, :networking => { :interfaces => { :external_ipv4 => { @@ -66,7 +46,7 @@ default_attributes( } }, :postgresql => { - :versions => [ "9.1" ], + :versions => ["9.6"], :settings => { :defaults => { :shared_buffers => "8GB", @@ -78,13 +58,16 @@ default_attributes( :sysctl => { :postgres => { :comment => "Increase shared memory for postgres", - :parameters => { + :parameters => { "kernel.shmmax" => 9 * 1024 * 1024 * 1024, "kernel.shmall" => 9 * 1024 * 1024 * 1024 / 4096 } } }, :tile => { + :database => { + :cluster => "9.6/main" + }, :node_file => "/store/database/nodes", :styles => { :default => { @@ -99,11 +82,12 @@ default_attributes( override_attributes( :networking => { - :nameservers => [ "8.8.8.8", "8.8.4.4" ] + :nameservers => ["8.8.8.8", "8.8.4.4"] } ) run_list( "role[ic]", + "role[tyan-s7010]", "role[tile]" )