X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/9c69d3d41616820e83728ca063fbf7f62562d932..b0e42ea229284e21d5d05b2e87153c733efb81d1:/roles/pummelzacken.rb diff --git a/roles/pummelzacken.rb b/roles/pummelzacken.rb index 975157fb4..365866e46 100644 --- a/roles/pummelzacken.rb +++ b/roles/pummelzacken.rb @@ -5,13 +5,13 @@ default_attributes( :networking => { :interfaces => { :internal_ipv4 => { - :interface => "em1", + :interface => "em1.2801", :role => :internal, :family => :inet, :address => "10.0.0.20" }, :external_ipv4 => { - :interface => "em2", + :interface => "em1.2800", :role => :external, :family => :inet, :address => "193.60.236.18" @@ -19,7 +19,7 @@ default_attributes( } }, :postgresql => { - :versions => ["9.5"], + :versions => ["10"], :settings => { :defaults => { :listen_addresses => "10.0.0.20", @@ -27,14 +27,16 @@ default_attributes( :maintenance_work_mem => "10GB", :random_page_cost => "1.5", :effective_cache_size => "60GB", - :fsync => "on" + :fsync => "off" } } }, :nominatim => { - :state => "standalone", - :dbadmins => %w(lonvia tomh), - :dbcluster => "9.5/main", + :state => "off", + :dbadmins => %w[lonvia tomh], + :dbcluster => "10/main", + :postgis => "2.4", + :enable_backup => true, :flatnode_file => "/ssd/nominatim/nodes.store", :tablespaces => { "dosm" => "/ssd/tablespaces/dosm", @@ -47,11 +49,16 @@ default_attributes( "isearch" => "/ssd/tablespaces/isearch", "daux" => "/data/tablespaces/daux", "iaux" => "/data/tablespaces/iaux" + }, + :fpm_pools => { + :www => { + :max_children => "40" + } } } ) run_list( - "role[ucl-slough]", + "role[ucl]", "role[nominatim]" )