]> git.openstreetmap.org Git - chef.git/blob - roles/longma.rb
Revert "community: Fix CSRF issue with monkey patch fix"
[chef.git] / roles / longma.rb
1 name "longma"
2 description "Master role applied to longma"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :internal => {
8         :interface => "bond0",
9         :role => :internal,
10         :inet => {
11           :address => "10.0.64.13"
12         },
13         :bond => {
14           :mode => "802.3ad",
15           :lacprate => "fast",
16           :xmithashpolicy => "layer3+4",
17           :slaves => %w[enp68s0f0np0 enp68s0f1np1 enp68s0f2np2 enp68s0f3np3]
18         }
19       },
20       :external_he => {
21         :interface => "bond0.101",
22         :role => :external,
23         :source_route_table => 100,
24         :inet => {
25           :address => "184.104.226.109",
26           :prefix => "27",
27           :gateway => "184.104.226.97"
28         },
29         :inet6 => {
30           :address => "2001:470:1:b3b::d",
31           :prefix => 64,
32           :gateway => "2001:470:1:b3b::1"
33         }
34       },
35       :external => {
36         :interface => "bond0.203",
37         :role => :external,
38         :metric => 150,
39         :source_route_table => 150,
40         :inet => {
41           :address => "87.252.214.109",
42           :prefix => "27",
43           :gateway => "87.252.214.97"
44         },
45         :inet6 => {
46           :address => "2001:4d78:fe03:1c::d",
47           :prefix => 64,
48           :gateway => "2001:4d78:fe03:1c::1"
49         }
50       }
51     }
52   },
53   :postgresql => {
54     :versions => ["17"],
55     :settings => {
56       :defaults => {
57         :max_connections => "550",
58         :work_mem => "240MB",
59         :effective_io_concurrency => "500"
60       }
61     }
62   },
63   :nominatim => {
64     :dbcluster => "17/main",
65     :enable_qa_tiles => true,
66     :flatnode_file => "/srv/nominatim.openstreetmap.org/planet-project/nodes.store",
67     :api_workers => 24,
68     :api_pool_size => 10
69   }
70 )
71
72 run_list(
73   "role[equinix-dub]",
74   "role[nominatim]"
75 )