]> git.openstreetmap.org Git - chef.git/commitdiff
imagery: switch to volume mount for imagery
authorGrant Slater <github@firefishy.com>
Tue, 2 Apr 2024 16:55:41 +0000 (17:55 +0100)
committerGrant Slater <github@firefishy.com>
Tue, 2 Apr 2024 16:55:41 +0000 (17:55 +0100)
cookbooks/imagery/recipes/tiler.rb
cookbooks/imagery/recipes/za_ngi_aerial.rb

index f1f06015a94083ebbbaa276de9d24b3c9a62a8ed..f5eff5c66643f305cfc07561a99e6dd3f48a49da 100644 (file)
 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,6 +38,7 @@ 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                    => 1,
               :GDAL_CACHEMAX                       => 200,
index c091b94d992e378e4291f887da81870b778d46d4..a888375a24f0cfb3b0e0a5f9cde7d872265f15de 100644 (file)
@@ -30,7 +30,7 @@ imagery_layer "ngi-aerial" do
   site "aerial.openstreetmap.org.za"
   uses_tiler true
   title "NGI Aerial 25cm/50cm"
-  source "https://tiler.openstreetmap.org/za-25cm/mosaic-tiler-https.json.gz"
+  source "https://tiler.openstreetmap.org/za-25cm/mosaic-tiler-file.json.gz"
   copyright 'State Copyright &copy; 2024 <a href="http://www.ngi.gov.za/">Chief Directorate: National Geo-spatial Information</a>'
   max_zoom 20
   extension "jpg"