X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/52a8537776cd479d770c1e1f4b6079e595d44115..bd092fe988542b53b8c4eef223ba87c57ad546f1:/roles/dulcy.rb diff --git a/roles/dulcy.rb b/roles/dulcy.rb index 5e98a9b5e..420522c59 100644 --- a/roles/dulcy.rb +++ b/roles/dulcy.rb @@ -1,68 +1,53 @@ name "dulcy" -description "Master role applied to dulcy -" +description "Master role applied to dulcy" default_attributes( :networking => { :interfaces => { - :external_ipv4 => { - :interface => "p18p1", - :role => :external, - :family => :inet, - :address => "193.63.75.109", - :hwaddress => "0c:c4:7a:66:96:d2" + :internal => { + :interface => "bond0", + :role => :internal, + :inet => { + :address => "10.0.48.9" + }, + :bond => { + :mode => "802.3ad", + :lacprate => "fast", + :xmithashpolicy => "layer3+4", + :slaves => %w[enp1s0f0 enp1s0f1] + } }, - :external_ipv6 => { - :interface => "p18p1", + :external => { + :interface => "bond0.3", :role => :external, - :family => :inet6, - :address => "2001:630:12:500:ec4:7aff:fe66:96d2" - }, - :internal_ipv4 => { - :interface => "p18p2", - :role => :internal, - :family => :inet, - :address => "146.179.159.179", - :hwaddress => "0c:c4:7a:66:96:d3" + :inet => { + :address => "184.104.179.137" + }, + :inet6 => { + :address => "2001:470:1:fa1::9" + } } } }, :postgresql => { + :versions => ["17"], :settings => { :defaults => { - :shared_buffers => "10GB", - :work_mem => "300MB", - :maintenance_work_mem => "10GB", - :random_page_cost => "1.5", - :effective_cache_size => "60GB", - :fsync => "on" + :work_mem => "240MB", + :effective_io_concurrency => "500" } } }, :nominatim => { - :enabled => false, - :flatnode_file => "/ssd/nominatim/nodes.store", - :database => { - :cluster => "9.4/main", - :dbname => "nominatim", - :postgis => "2.1" - }, - :fpm_pools => { - :www => { - :port => "8000", - :pm => "dynamic", - :max_children => "60" - }, - :bulk => { - :port => "8001", - :pm => "static", - :max_children => "10" - } - } + :dbcluster => "17/main", + :flatnode_file => "/srv/nominatim.openstreetmap.org/planet-project/nodes.store", + :enable_qa_tiles => true, + :api_workers => 14, + :api_pool_size => 10 } ) run_list( - "role[ic]", - "role[nominatim-standalone]" + "role[equinix-ams]", + "role[nominatim]" )