]> git.openstreetmap.org Git - chef.git/blob - roles/dulcy.rb
Push external network config in Amsterdam down to the hosts
[chef.git] / roles / dulcy.rb
1 name "dulcy"
2 description "Master role applied to dulcy"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :internal => {
8         :interface => "bond0",
9         :role => :internal,
10         :inet => {
11           :address => "10.0.48.9"
12         },
13         :bond => {
14           :mode => "802.3ad",
15           :lacprate => "fast",
16           :xmithashpolicy => "layer3+4",
17           :slaves => %w[ens18f0 ens18f1]
18         }
19       },
20       :external => {
21         :interface => "bond0.2",
22         :role => :external,
23         :inet => {
24           :address => "130.117.76.9",
25           :prefix => "27",
26           :gateway => "130.117.76.1"
27         },
28         :inet6 => {
29           :address => "2001:978:2:2c::172:9",
30           :prefix => "64",
31           :gateway => "2001:978:2:2c::172:1",
32           :routes => {
33             "2001:470:1:b3b::/64" => { :type => "unreachable" }
34           }
35         }
36       }
37     }
38   },
39   :postgresql => {
40     :versions => ["14"],
41     :settings => {
42       :defaults => {
43         :work_mem => "240MB",
44         :fsync => "on",
45         :effective_io_concurrency => "500"
46       }
47     }
48   },
49   :nominatim => {
50     :state => "standalone",
51     :dbcluster => "14/main",
52     :postgis => "3",
53     :flatnode_file => "/ssd/nominatim/nodes.store",
54     :logdir => "/ssd/nominatim/log",
55     :config => {
56       :forward_dependencies => "yes"
57     }
58   }
59 )
60
61 run_list(
62   "role[equinix-ams]",
63   "role[nominatim]"
64 )