X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/e02a48d0169202684271b53f818b87796e3f2e6a..2bfb0ef07fb64314f5c4ded641a8c280df9c1d0b:/roles/pummelzacken.rb diff --git a/roles/pummelzacken.rb b/roles/pummelzacken.rb index e3003ed47..d16fa71ad 100644 --- a/roles/pummelzacken.rb +++ b/roles/pummelzacken.rb @@ -4,45 +4,52 @@ description "Master role applied to pummelzacken" default_attributes( :networking => { :interfaces => { + :bond => { + :interface => "bond0", + :bond => { + :slaves => %w[eno1 enp5s0f0] + } + }, :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 => ["14"], :settings => { :defaults => { :listen_addresses => "10.0.0.20", :work_mem => "160MB", - :maintenance_work_mem => "10GB", - :random_page_cost => "1.5", - :effective_cache_size => "60GB" + :effective_io_concurrency => "256", + :fsync => "on" } } }, :nominatim => { + :state => "standalone", + :dbcluster => "14/main", + :postgis => "3", + :enable_backup => true, :flatnode_file => "/ssd/nominatim/nodes.store", - :database => { - :cluster => "9.3/main", - :dbname => "nominatim", - :postgis => "2.1" - }, - :redirects => { + :tablespaces => { + "daux" => "/data/tablespaces/daux", + "iaux" => "/data/tablespaces/iaux" } + } ) run_list( - "role[ucl-wolfson]", + "role[ucl]", "role[nominatim]" )