X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/f4e4d77e318f2130d2f410d118a5bd720ece3bbd..9b6fa6d1c1d425a8e1368ae1ec23bfdee308b169:/roles/pummelzacken.rb diff --git a/roles/pummelzacken.rb b/roles/pummelzacken.rb index 9f63dd0c0..7b346bf6f 100644 --- a/roles/pummelzacken.rb +++ b/roles/pummelzacken.rb @@ -4,22 +4,28 @@ description "Master role applied to pummelzacken" default_attributes( :networking => { :interfaces => { + :bond => { + :interface => "bond0", + :bond => { + :slaves => %w[em1 p5p1] + } + }, :internal_ipv4 => { - :interface => "em1", + :interface => "bond0.2801", :role => :internal, :family => :inet, :address => "10.0.0.20" }, :external_ipv4 => { - :interface => "em2", + :interface => "bond0.2800", :role => :external, :family => :inet, - :address => "128.40.45.204" + :address => "193.60.236.18" } } }, :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-wolfson]", + "role[ucl]", "role[nominatim]" )