X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/5a4919337b3d34a106cbc4b1ce6bf5c84a1dae44..a1bf7d721cd3508668313c1279851937d93e3791:/roles/longma.rb?ds=sidebyside diff --git a/roles/longma.rb b/roles/longma.rb index d0c79ee50..e4b3ebc55 100644 --- a/roles/longma.rb +++ b/roles/longma.rb @@ -4,34 +4,51 @@ description "Master role applied to longma" default_attributes( :networking => { :interfaces => { - :internal_ipv4 => { + :internal => { :interface => "bond0", :role => :internal, - :family => :inet, - :address => "10.0.64.13", + :inet => { + :address => "10.0.64.13" + }, :bond => { :mode => "802.3ad", :lacprate => "fast", :xmithashpolicy => "layer3+4", - :slaves => %w[] + :slaves => %w[enp68s0f0np0 enp68s0f1np1 enp68s0f2np2 enp68s0f3np3] } }, - :external_ipv4 => { + :external => { :interface => "bond0.101", :role => :external, - :family => :inet, - :address => "184.104.226.109" - }, - :external_ipv6 => { - :interface => "bond0.101", - :role => :external, - :family => :inet6, - :address => "2001:470:1:b3b::d" + :inet => { + :address => "184.104.226.109" + }, + :inet6 => { + :address => "2001:470:1:b3b::d" + } + } + } + }, + :postgresql => { + :versions => ["17"], + :settings => { + :defaults => { + :max_connections => "550", + :work_mem => "240MB", + :effective_io_concurrency => "500" } } + }, + :nominatim => { + :dbcluster => "17/main", + :enable_qa_tiles => true, + :flatnode_file => "/srv/nominatim.openstreetmap.org/planet-project/nodes.store", + :api_workers => 24, + :api_pool_size => 10 } ) run_list( - "role[equinix-dub]" + "role[equinix-dub]", + "role[nominatim]" )