]> git.openstreetmap.org Git - chef.git/commitdiff
Remove render server role from rhaegal
authorTom Hughes <tom@compton.nu>
Thu, 10 Mar 2022 20:37:51 +0000 (20:37 +0000)
committerTom Hughes <tom@compton.nu>
Thu, 10 Mar 2022 20:38:07 +0000 (20:38 +0000)
roles/rhaegal.rb

index 00fce56cf4345c2d21baaadc745700ccc9287abb..6aafb5d33f0c90d358e5f93140ac5e7ed3bd176f 100644 (file)
@@ -38,41 +38,9 @@ default_attributes(
         :public_address => "161.53.248.77"
       }
     }
-  },
-  :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 => "12/main",
-      :postgis => "3"
-    },
-    :styles => {
-      :default => {
-        :tile_directories => [
-          { :name => "/store/tiles/default", :min_zoom => 0, :max_zoom => 19 }
-        ]
-      }
-    }
   }
 )
 
 run_list(
-  "role[carnet]",
-  "role[tile]"
+  "role[carnet]"
 )