X-Git-Url: https://git.openstreetmap.org./chef.git/blobdiff_plain/e7928dce7a4141f625dd889dc0147ddc395fa615..eb15b15aae4c6f83fcc917214d33458052ae248a:/cookbooks/imagery/recipes/tiler.rb diff --git a/cookbooks/imagery/recipes/tiler.rb b/cookbooks/imagery/recipes/tiler.rb index 69e3abdf7..f5eff5c66 100644 --- a/cookbooks/imagery/recipes/tiler.rb +++ b/cookbooks/imagery/recipes/tiler.rb @@ -20,6 +20,13 @@ include_recipe "imagery" include_recipe "podman" +directory "/store/imagery" do + owner "root" + group "root" + mode "755" + recursive true +end + # FIXME: until upstream supports arm64 images: https://github.com/developmentseed/titiler/pull/740 container_image = if arm? "ghcr.io/firefishy/titiler:latest" @@ -31,8 +38,9 @@ podman_service "titiler" do description "Container service for titiler" image container_image ports 8080 => 8080 + volume "/store/imagery" => "/store/imagery" environment :PORT => 8080, - :WORKERS_PER_CORE => 2, + :WORKERS_PER_CORE => 1, :GDAL_CACHEMAX => 200, :GDAL_DISABLE_READDIR_ON_OPEN => "EMPTY_DIR", :GDAL_INGESTED_BYTES_AT_OPEN => 32768,