X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/e898e23db2cc53d1277ed02f12b8cc2c8111284f..60e1fc9aacf2df475061326987658fa729c5840b:/roles/pummelzacken.rb diff --git a/roles/pummelzacken.rb b/roles/pummelzacken.rb index 73e486518..ec2ac08b6 100644 --- a/roles/pummelzacken.rb +++ b/roles/pummelzacken.rb @@ -2,6 +2,9 @@ name "pummelzacken" description "Master role applied to pummelzacken" default_attributes( + :apt => { + :sources => ["postgresql"] + }, :networking => { :interfaces => { :internal_ipv4 => { @@ -19,6 +22,7 @@ default_attributes( } }, :postgresql => { + :versions => ["9.5"], :settings => { :defaults => { :listen_addresses => "10.0.0.20", @@ -30,38 +34,26 @@ default_attributes( } }, :nominatim => { + :dbadmins => %w(lonvia tomh), + :dbcluster => "9.5/main", :flatnode_file => "/ssd/nominatim/nodes.store", - :database => { - :cluster => "9.3/main", - :dbname => "nominatim", - :postgis => "2.1" - }, - :fpm_pools => { - :www => { - :port => "8000", - :pm => "dynamic", - :max_children => "60" - }, - :bulk => { - :port => "8001", - :pm => "static", - :max_children => "10" - } + :tablespaces => { + "dosm" => "/ssd/tablespaces/dosm", + "iosm" => "/ssd/tablespaces/iosm", + "dplace" => "/ssd/tablespaces/dplace", + "iplace" => "/ssd/tablespaces/iplace", + "daddress" => "/ssd/tablespaces/daddress", + "iaddress" => "/ssd/tablespaces/iaddress", + "dsearch" => "/ssd/tablespaces/dsearch", + "isearch" => "/ssd/tablespaces/isearch", + "daux" => "/data/tablespaces/daux", + "iaux" => "/data/tablespaces/iaux" }, - :redirects => { - } - }, - :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" - } + :revision => "cmake-port" } ) run_list( "role[ucl-wolfson]", - "role[nominatim-master]" + "role[nominatim-base]" )