]> git.openstreetmap.org Git - chef.git/blob - roles/vhagar.rb
Push external network config in Amsterdam down to the hosts
[chef.git] / roles / vhagar.rb
1 name "vhagar"
2 description "Master role applied to vhagar"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :internal => {
8         :interface => "bond0",
9         :role => :internal,
10         :inet => {
11           :address => "10.0.48.5"
12         },
13         :bond => {
14           :mode => "802.3ad",
15           :lacprate => "fast",
16           :xmithashpolicy => "layer3+4",
17           :slaves => %w[eno1 eno2 eno3 eno4 eno5 eno6]
18         }
19       },
20       :external => {
21         :interface => "bond0.2",
22         :role => :external,
23         :inet => {
24           :address => "130.117.76.5",
25           :prefix => "27",
26           :gateway => "130.117.76.1"
27         },
28         :inet6 => {
29           :address => "2001:978:2:2c::172:5",
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   :nominatim => {
40     :state => "standalone",
41     :flatnode_file => "/srv/nominatim.openstreetmap.org/planet-project/nodes.store",
42     :fpm_pools => {
43       "nominatim.openstreetmap.org" => {
44         :max_children => 200
45       }
46     }
47   }
48 )
49
50 run_list(
51   "role[equinix-ams]",
52   "role[nominatim]"
53 )