]> git.openstreetmap.org Git - chef.git/blob - roles/stormfly-04.rb
imagery: disable memory limit and stop systemd-coredump.socket
[chef.git] / roles / stormfly-04.rb
1 name "stormfly-04"
2 description "Master role applied to stormfly-04"
3
4 default_attributes(
5   :hardware => {
6     :shm_size => "38g"
7   },
8   :networking => {
9     :interfaces => {
10       :external => {
11         :inet => {
12           :address => "140.211.167.100"
13         },
14         :inet6 => {
15           :address => "2605:bc80:3010:700::8cd3:a764"
16         },
17         :bond => {
18           :slaves => %w[eno1 eno2 eno3 eno4 eno49 eno50]
19         }
20       }
21     }
22   },
23   :sysfs => {
24     :cpu_power_energy_perf_bias => {
25       :parameters => {
26         "devices/system/cpu/cpu0/power/energy_perf_bias" => "0",
27         "devices/system/cpu/cpu1/power/energy_perf_bias" => "0",
28         "devices/system/cpu/cpu2/power/energy_perf_bias" => "0",
29         "devices/system/cpu/cpu3/power/energy_perf_bias" => "0",
30         "devices/system/cpu/cpu4/power/energy_perf_bias" => "0",
31         "devices/system/cpu/cpu5/power/energy_perf_bias" => "0",
32         "devices/system/cpu/cpu6/power/energy_perf_bias" => "0",
33         "devices/system/cpu/cpu7/power/energy_perf_bias" => "0",
34         "devices/system/cpu/cpu8/power/energy_perf_bias" => "0",
35         "devices/system/cpu/cpu9/power/energy_perf_bias" => "0",
36         "devices/system/cpu/cpu10/power/energy_perf_bias" => "0",
37         "devices/system/cpu/cpu11/power/energy_perf_bias" => "0",
38         "devices/system/cpu/cpu12/power/energy_perf_bias" => "0",
39         "devices/system/cpu/cpu13/power/energy_perf_bias" => "0",
40         "devices/system/cpu/cpu14/power/energy_perf_bias" => "0",
41         "devices/system/cpu/cpu15/power/energy_perf_bias" => "0",
42         "devices/system/cpu/cpu16/power/energy_perf_bias" => "0",
43         "devices/system/cpu/cpu17/power/energy_perf_bias" => "0",
44         "devices/system/cpu/cpu18/power/energy_perf_bias" => "0",
45         "devices/system/cpu/cpu19/power/energy_perf_bias" => "0",
46         "devices/system/cpu/cpu20/power/energy_perf_bias" => "0",
47         "devices/system/cpu/cpu21/power/energy_perf_bias" => "0",
48         "devices/system/cpu/cpu22/power/energy_perf_bias" => "0",
49         "devices/system/cpu/cpu23/power/energy_perf_bias" => "0",
50         "devices/system/cpu/cpu24/power/energy_perf_bias" => "0",
51         "devices/system/cpu/cpu25/power/energy_perf_bias" => "0",
52         "devices/system/cpu/cpu26/power/energy_perf_bias" => "0",
53         "devices/system/cpu/cpu27/power/energy_perf_bias" => "0",
54         "devices/system/cpu/cpu28/power/energy_perf_bias" => "0",
55         "devices/system/cpu/cpu29/power/energy_perf_bias" => "0",
56         "devices/system/cpu/cpu30/power/energy_perf_bias" => "0",
57         "devices/system/cpu/cpu31/power/energy_perf_bias" => "0",
58         "devices/system/cpu/cpu32/power/energy_perf_bias" => "0",
59         "devices/system/cpu/cpu33/power/energy_perf_bias" => "0",
60         "devices/system/cpu/cpu34/power/energy_perf_bias" => "0",
61         "devices/system/cpu/cpu35/power/energy_perf_bias" => "0",
62         "devices/system/cpu/cpu36/power/energy_perf_bias" => "0",
63         "devices/system/cpu/cpu37/power/energy_perf_bias" => "0",
64         "devices/system/cpu/cpu38/power/energy_perf_bias" => "0",
65         "devices/system/cpu/cpu39/power/energy_perf_bias" => "0",
66         "devices/system/cpu/cpu40/power/energy_perf_bias" => "0",
67         "devices/system/cpu/cpu41/power/energy_perf_bias" => "0",
68         "devices/system/cpu/cpu42/power/energy_perf_bias" => "0",
69         "devices/system/cpu/cpu43/power/energy_perf_bias" => "0",
70         "devices/system/cpu/cpu44/power/energy_perf_bias" => "0",
71         "devices/system/cpu/cpu45/power/energy_perf_bias" => "0",
72         "devices/system/cpu/cpu46/power/energy_perf_bias" => "0",
73         "devices/system/cpu/cpu47/power/energy_perf_bias" => "0",
74         "devices/system/cpu/cpu48/power/energy_perf_bias" => "0",
75         "devices/system/cpu/cpu49/power/energy_perf_bias" => "0",
76         "devices/system/cpu/cpu50/power/energy_perf_bias" => "0",
77         "devices/system/cpu/cpu51/power/energy_perf_bias" => "0",
78         "devices/system/cpu/cpu52/power/energy_perf_bias" => "0",
79         "devices/system/cpu/cpu53/power/energy_perf_bias" => "0",
80         "devices/system/cpu/cpu54/power/energy_perf_bias" => "0",
81         "devices/system/cpu/cpu55/power/energy_perf_bias" => "0"
82       }
83     }
84   },
85   :postgresql => {
86     :versions => ["17"],
87     :settings => {
88       :defaults => {
89         :work_mem => "300MB",
90         :fsync => "on",
91         :effective_io_concurrency => "100"
92       }
93     }
94   },
95   :nominatim => {
96     :dbcluster => "17/main",
97     :flatnode_file => "/srv/nominatim.openstreetmap.org/planet-project/nodes.store",
98     :api_workers => 19,
99     :api_pool_size => 7
100   }
101 )
102
103 run_list(
104   "role[osuosl]",
105   "role[hp-g9]",
106   "role[geodns]",
107   "role[nominatim]"
108 )