X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/74ccc507f7e26531cee96cc31115a4f50a4fed72..2da0e8817fad5aeaa6ae5ccb4db18542681b9459:/roles/pyrene.rb diff --git a/roles/pyrene.rb b/roles/pyrene.rb index b3bee0f77..680003a89 100644 --- a/roles/pyrene.rb +++ b/roles/pyrene.rb @@ -2,69 +2,40 @@ name "pyrene" description "Master role applied to pyrene" default_attributes( - :apt => { - :sources => ["postgresql"] - }, :munin => { :plugins => { :hpasmcli2_temp => { :temp15 => { :warning => "59.5", :critical => "70" }, :temp17 => { :warning => "59.5", :critical => "70" } + }, + :hpasmcli2_fans => { + :fan1 => { :warning => "95", :critical => "100" }, + :fan2 => { :warning => "95", :critical => "100" }, + :fan3 => { :warning => "95", :critical => "100" }, + :fan4 => { :warning => "95", :critical => "100" }, + :fan5 => { :warning => "95", :critical => "100" }, + :fan6 => { :warning => "95", :critical => "100" }, + :fan7 => { :warning => "95", :critical => "100" }, + :fan8 => { :warning => "95", :critical => "100" } } } }, :networking => { :interfaces => { - :external_ipv4 => { + :external => { :interface => "eno1", :role => :external, - :family => :inet, - :address => "140.211.167.98" - }, - :external_ipv6 => { - :interface => "eno1", - :role => :external, - :family => :inet6, - :address => "2605:bc80:3010:700::8cd3:a762" - } - } - }, - :postgresql => { - :versions => ["10"], - :settings => { - :defaults => { - :shared_buffers => "8GB", - :maintenance_work_mem => "7144MB", - :effective_cache_size => "16GB" - } - } - }, - :sysctl => { - :postgres => { - :comment => "Increase shared memory for postgres", - :parameters => { - "kernel.shmmax" => 9 * 1024 * 1024 * 1024, - "kernel.shmall" => 9 * 1024 * 1024 * 1024 / 4096 - } - } - }, - :tile => { - :database => { - :cluster => "10/main", - :postgis => "2.4" - }, - :node_file => "/store/database/nodes", - :styles => { - :default => { - :tile_directories => [ - { :name => "/store/tiles/default", :min_zoom => 0, :max_zoom => 19 } - ] + :inet => { + :address => "140.211.167.98" + }, + :inet6 => { + :address => "2605:bc80:3010:700::8cd3:a762" + } } } } ) run_list( - "role[osuosl]", - "role[tile]" + "role[osuosl]" )