X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/2b8fcbaea032fe9a2e5c98a8c63311756809c493..d16f3d1a7f01a40ad821948956a21d26fdcab32b:/roles/palulukon.rb?ds=sidebyside diff --git a/roles/palulukon.rb b/roles/palulukon.rb index c1f5a1922..661febeb6 100644 --- a/roles/palulukon.rb +++ b/roles/palulukon.rb @@ -3,14 +3,49 @@ description "Master role applied to palulukon" default_attributes( :networking => { + :firewall => { + :allowlist => ["172.31.0.2"] + }, :interfaces => { - :external_ipv4 => { + :external => { :interface => "ens5", :role => :external, - :family => :inet, - :address => "172.31.37.101", - :prefix => "20", - :gateway => "172.31.32.1" + :inet => { + :address => "172.31.37.101", + :prefix => "20", + :gateway => "172.31.32.1", + :public_address => "3.144.0.72" + } + } + } + }, + :postgresql => { + :settings => { + :defaults => { + :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 => "16/main", + :postgis => "3" + }, + :mapnik => "3.1", + :styles => { + :default => { + :tile_directories => [ + { :name => "/store/tiles/default", :min_zoom => 0, :max_zoom => 19 } + ] } } } @@ -23,5 +58,6 @@ override_attributes( ) run_list( - "role[aws-us-east-2]" + "role[aws-us-east-2]", + "role[tile]" )