X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/6f26052c85ad56d492fd52d8d9ef1096a9147974..592e2f364edbe670ef9db21749417f6d7d521474:/roles/orm.rb?ds=inline diff --git a/roles/orm.rb b/roles/orm.rb index 9f2694fe6..e8caaf82e 100644 --- a/roles/orm.rb +++ b/roles/orm.rb @@ -26,84 +26,49 @@ 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 => { + :internal_ipv4 => { + :interface => "bond0", + :role => :internal, + :family => :inet, + :address => "10.0.48.3", + :bond => { + :slaves => %w[eth0 eth1] + } + }, :external_ipv4 => { - :interface => "eth0", + :interface => "bond0.2", :role => :external, :family => :inet, - :address => "193.63.75.98" + :address => "130.117.76.3" }, :external_ipv6 => { - :interface => "eth0", + :interface => "bond0.2", :role => :external, :family => :inet6, - :address => "2001:630:12:500:2e0:81ff:fec5:2a8c" - } - } - }, - :postgresql => { - :versions => [ "9.1" ], - :settings => { - :defaults => { - :shared_buffers => "8GB", - :maintenance_work_mem => "7144MB", - :effective_cache_size => "16GB" + :address => "2001:978:2:2C::172:3" } } }, :sysctl => { :postgres => { :comment => "Increase shared memory for postgres", - :parameters => { + :parameters => { "kernel.shmmax" => 9 * 1024 * 1024 * 1024, "kernel.shmall" => 9 * 1024 * 1024 * 1024 / 4096 } } - }, - :tile => { - :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 } - ] - } - } } ) 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[tile]" + "role[equinix]", + "role[tyan-s7010]" )