]> git.openstreetmap.org Git - chef.git/blob - roles/wawel.rb
Use apt to install python geojson library
[chef.git] / roles / wawel.rb
1 name "wawel"
2 description "Master role applied to wawel"
3
4 default_attributes(
5   :postgresql => {
6     :settings => {
7       :defaults => {
8         :effective_cache_size => "16GB"
9       }
10     }
11   },
12   :sysctl => {
13     :postgres => {
14       :comment => "Increase shared memory for postgres",
15       :parameters => {
16         "kernel.shmmax" => 9 * 1024 * 1024 * 1024,
17         "kernel.shmall" => 9 * 1024 * 1024 * 1024 / 4096
18       }
19     }
20   },
21   :tile => {
22     :database => {
23       :cluster => "16/main",
24       :postgis => "3"
25     },
26     :mapnik => "3.1",
27     :styles => {
28       :default => {
29         :tile_directories => [
30           { :name => "/store/tiles/default", :min_zoom => 0, :max_zoom => 19 }
31         ]
32       }
33     }
34   }
35 )
36
37 run_list(
38   "role[cloudferro-waw3-2]",
39   "role[tile]"
40 )