X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/6c1eca2b583b258a9086693997b033d24378aae1..a406b373ee9a85b2f79e187b582379326b7b70d2:/cookbooks/tile/recipes/default.rb?ds=inline diff --git a/cookbooks/tile/recipes/default.rb b/cookbooks/tile/recipes/default.rb index 7f09a2777..fe5934a61 100644 --- a/cookbooks/tile/recipes/default.rb +++ b/cookbooks/tile/recipes/default.rb @@ -25,6 +25,7 @@ include_recipe "nodejs" include_recipe "postgresql" include_recipe "prometheus" include_recipe "python" +include_recipe "ruby" include_recipe "tools" blocks = data_bag_item("tile", "blocks") @@ -156,6 +157,7 @@ end package %w[ python3-cairo python3-mapnik + python3-pyproj python3-setuptools ] @@ -163,30 +165,6 @@ python_package "pyotp" do python_version "3" end -unifont = if node[:lsb][:release].to_f < 22.04 - "ttf-unifont" - else - "fonts-unifont" - end - -package %W[ - fonts-noto-cjk - fonts-noto-hinted - fonts-noto-unhinted - fonts-hanazono - #{unifont} -] - -["NotoSansArabicUI-Regular.ttf", "NotoSansArabicUI-Bold.ttf"].each do |font| - remote_file "/usr/share/fonts/truetype/noto/#{font}" do - action :create_if_missing - source "https://github.com/googlei18n/noto-fonts/raw/master/hinted/#{font}" - owner "root" - group "root" - mode "644" - end -end - directory "/srv/tile.openstreetmap.org/cgi-bin" do owner "tile" group "tile" @@ -221,7 +199,11 @@ directory "/srv/tile.openstreetmap.org/data" do mode "755" end -package "mapnik-utils" +package %w[ + mapnik-utils + tar + unzip +] node[:tile][:data].each_value do |data| url = data[:url] @@ -240,8 +222,6 @@ node[:tile][:data].each_value do |data| end if file =~ /\.tgz$/ - package "tar" - execute file do action :nothing command "tar -zxf #{file} -C #{directory}" @@ -249,8 +229,6 @@ node[:tile][:data].each_value do |data| group "tile" end elsif file =~ /\.tar\.bz2$/ - package "tar" - execute file do action :nothing command "tar -jxf #{file} -C #{directory}" @@ -258,8 +236,6 @@ node[:tile][:data].each_value do |data| group "tile" end elsif file =~ /\.zip$/ - package "unzip" - execute file do action :nothing command "unzip -qq -o #{file} -d #{directory}" @@ -306,8 +282,12 @@ systemd_service "update-lowzoom@" do private_tmp true private_devices true private_network true - protect_system "full" + protect_system "strict" protect_home true + read_write_paths [ + "/srv/tile.openstreetmap.org/tiles/%i", + "/var/log/tile" + ] no_new_privileges true restart "on-failure" end @@ -384,6 +364,17 @@ node[:tile][:styles].each do |name, details| group "tile" end + if details[:fonts_script] + execute details[:fonts_script] do + action :nothing + command details[:fonts_script] + cwd style_directory + user "tile" + group "tile" + subscribes :run, "git[#{style_directory}]" + end + end + execute "#{style_directory}/project.mml" do action :nothing command "carto -a 3.0.0 project.mml > project.xml" @@ -411,6 +402,11 @@ postgresql_user "tomh" do superuser true end +postgresql_user "pnorman" do + cluster node[:tile][:database][:cluster] + superuser true +end + postgresql_user "tile" do cluster node[:tile][:database][:cluster] end @@ -508,15 +504,22 @@ end package %w[ osm2pgsql - ruby osmium-tool pyosmium python3-pyproj ] -gem_package "apachelogregex" -gem_package "file-tail" -gem_package "lru_redux" +gem_package "apachelogregex" do + gem_binary node[:ruby][:gem] +end + +gem_package "file-tail" do + gem_binary node[:ruby][:gem] +end + +gem_package "lru_redux" do + gem_binary node[:ruby][:gem] +end remote_directory "/usr/local/bin" do source "bin" @@ -541,10 +544,11 @@ systemd_service "tile-ratelimit" do user "tile" group "adm" exec_start "/usr/local/bin/tile-ratelimit" + nice 10 private_tmp true private_devices true private_network true - protect_system "full" + protect_system "strict" protect_home true read_write_paths "/srv/tile.openstreetmap.org/conf" no_new_privileges true @@ -589,11 +593,18 @@ systemd_service "expire-tiles" do type "simple" user "_renderd" exec_start "/usr/local/bin/expire-tiles" + nice 10 standard_output "null" private_tmp true private_devices true - protect_system "full" + protect_system "strict" protect_home true + read_write_paths [ + "/store/database/nodes", + "/store/tiles/%i", + "/var/lib/replicate/expire-queue", + "/var/log/tile" + ] no_new_privileges true end @@ -615,8 +626,13 @@ systemd_service "replicate" do exec_start "/usr/local/bin/replicate" private_tmp true private_devices true - protect_system "full" + protect_system "strict" protect_home true + read_write_paths [ + "/store/database/nodes", + "/var/lib/replicate", + "/var/log/tile" + ] no_new_privileges true restart "on-failure" end @@ -649,14 +665,15 @@ systemd_service "render-lowzoom" do private_tmp true private_devices true private_network true - protect_system "full" + protect_system "strict" protect_home true + read_write_paths "/var/log/tile" no_new_privileges true end systemd_timer "render-lowzoom" do description "Render low zoom tiles" - on_calendar "Sun *-*~07/1 01:00:00" + on_calendar "Fri *-*-* 23:00:00 UTC" end service "render-lowzoom.timer" do