X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/2b8fcbaea032fe9a2e5c98a8c63311756809c493..9c48ae6b9154acb9aeb57cb94fb2fae5a88b9c8d:/roles/palulukon.rb diff --git a/roles/palulukon.rb b/roles/palulukon.rb index c1f5a1922..69183cb9e 100644 --- a/roles/palulukon.rb +++ b/roles/palulukon.rb @@ -10,7 +10,40 @@ default_attributes( :family => :inet, :address => "172.31.37.101", :prefix => "20", - :gateway => "172.31.32.1" + :gateway => "172.31.32.1", + :public_address => "3.144.0.72" + } + } + }, + :postgresql => { + :settings => { + :defaults => { + :shared_buffers => "8GB", + :maintenance_work_mem => "7144MB", + :effective_cache_size => "16GB" + } + } + }, + :sysctl => { + :postgres => { + :comment => "Increase shared memory for postgres", + :parameters => { + "kernel.shmmax" => 9 * 1024 * 1024 * 1024, + "kernel.shmall" => 9 * 1024 * 1024 * 1024 / 4096 + } + } + }, + :tile => { + :database => { + :cluster => "14/main", + :postgis => "3" + }, + :mapnik => "3.1", + :styles => { + :default => { + :tile_directories => [ + { :name => "/store/tiles/default", :min_zoom => 0, :max_zoom => 19 } + ] } } } @@ -23,5 +56,6 @@ override_attributes( ) run_list( - "role[aws-us-east-2]" + "role[aws-us-east-2]", + "role[tile]" )