X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/eda0faa323426615b78375067a62aecd41b9b5af..df0f163ca9f0c3e692c7adc639982128994f24f5:/roles/pummelzacken.rb diff --git a/roles/pummelzacken.rb b/roles/pummelzacken.rb index b277f6991..901a0512c 100644 --- a/roles/pummelzacken.rb +++ b/roles/pummelzacken.rb @@ -9,42 +9,62 @@ default_attributes( :role => :internal, :family => :inet, :address => "10.0.0.20" + }, + :external_ipv4 => { + :interface => "em2", + :role => :external, + :family => :inet, + :address => "128.40.45.204" } } }, :postgresql => { - :versions => [ "9.3" ], :settings => { :defaults => { - :shared_buffers => "24GB", + :listen_addresses => "10.0.0.20", :work_mem => "160MB", :maintenance_work_mem => "10GB", :random_page_cost => "1.5", - :effective_cache_size => "48GB" + :effective_cache_size => "60GB" } } }, :nominatim => { - :enabled => false, + :flatnode_file => "/ssd/nominatim/nodes.store", :database => { - :cluster => "9.3/main", - :dbname => "nominatim", - :postgis => "2.1" + :cluster => "9.3/main", + :dbname => "nominatim", + :postgis => "2.1" }, :fpm_pools => { - :www => { - :pm => "dynamic", - :max_children => "70" - }, - :bulk => { - :pm => "static", - :max_children => "10" - } + :www => { + :port => "8000", + :pm => "dynamic", + :max_children => "60" + }, + :bulk => { + :port => "8001", + :pm => "static", + :max_children => "10" + } + }, + :redirects => { + :reverse => "dulcy.openstreetmap.org", + :search => "dulcy.openstreetmap.org", + :details => "dulcy.openstreetmap.org" + } + }, + :hardware => { + :grub => { + # lock kernel to 3.16.0-46 due to some issue with igb driver + # see https://github.com/openstreetmap/operations/issues/45 + # for more information. + :kernel => "3.16.0-46" } } ) run_list( - "role[ucl-internal]", - "role[nominatim]" + "role[ucl-wolfson]", + "role[nominatim-master]" )