X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/b88d6ea0fa7181ba138ef249a9a4aac0ce77c8a3..2d6d56f75a35f748f19411b043b7fc430bdb3c6e:/roles/pummelzacken.rb diff --git a/roles/pummelzacken.rb b/roles/pummelzacken.rb index cffcab8b7..b6d866984 100644 --- a/roles/pummelzacken.rb +++ b/roles/pummelzacken.rb @@ -4,14 +4,20 @@ description "Master role applied to pummelzacken" default_attributes( :networking => { :interfaces => { + :bond => { + :interface => "bond0", + :bond => { + :slaves => %w[eno1 enp5s0f0] + } + }, :internal_ipv4 => { - :interface => "em2", + :interface => "bond0.2801", :role => :internal, :family => :inet, :address => "10.0.0.20" }, :external_ipv4 => { - :interface => "em2.2800", + :interface => "bond0.2800", :role => :external, :family => :inet, :address => "193.60.236.18" @@ -19,7 +25,7 @@ default_attributes( } }, :postgresql => { - :versions => ["9.5"], + :versions => ["12"], :settings => { :defaults => { :listen_addresses => "10.0.0.20", @@ -27,14 +33,23 @@ default_attributes( :maintenance_work_mem => "10GB", :random_page_cost => "1.5", :effective_cache_size => "60GB", + :effective_io_concurrency => "256", :fsync => "on" } } }, + :apache => { + :event => { + :max_request_workers => 3000, + :threads_per_child => 70 + } + }, :nominatim => { :state => "standalone", - :dbadmins => %w(lonvia tomh), - :dbcluster => "9.5/main", + :dbadmins => %w[lonvia tomh], + :dbcluster => "12/main", + :postgis => "2.5", + :enable_backup => true, :flatnode_file => "/ssd/nominatim/nodes.store", :tablespaces => { "dosm" => "/ssd/tablespaces/dosm", @@ -52,6 +67,6 @@ default_attributes( ) run_list( - "role[ucl-slough]", + "role[ucl]", "role[nominatim]" )