]> git.openstreetmap.org Git - chef.git/blob - roles/equinix-dub.rb
Switch machines in Dublin to use systemd-networkd
[chef.git] / roles / equinix-dub.rb
1 name "equinix-dub"
2 description "Role applied to all servers at Equinix Dublin"
3
4 default_attributes(
5   :sysctl => {
6     :enable_bbr_10g => {
7       :comment => "Enable BBR. Equinix Dub has 10G uplink unlikely to buffer overrun",
8       :parameters => {
9         "net.ipv4.tcp_congestion_control" => "bbr",
10         "net.ipv4.tcp_notsent_lowat" => "16384"
11       }
12     }
13   },
14   :networking => {
15     :engine => "systemd-networkd",
16     :roles => {
17       :internal => {
18         :inet => {
19           :prefix => "20",
20           :gateway => "10.0.64.2",
21           :routes => {
22             "10.0.0.0/8" => { :via => "10.0.64.2" }
23           }
24         }
25       },
26       :external => {
27         :zone => "dub",
28         :inet => {
29           :prefix => "27",
30           :gateway => "184.104.226.97"
31         },
32         :inet6 => {
33           :prefix => "64",
34           :gateway => "2001:470:1:b3b::1",
35           :routes => {
36             "2001:978:2:2c::/64" => { :type => "unreachable" }
37           }
38         }
39       }
40     }
41   },
42   :web => {
43     :fileserver => "fafnir",
44     :readonly_database_host => "snap-03.dub.openstreetmap.org"
45   }
46 )
47
48 override_attributes(
49   :networking => {
50     :nameservers => ["10.0.64.2", "8.8.8.8", "8.8.4.4"],
51     :search => ["dub.openstreetmap.org", "openstreetmap.org"]
52   },
53   :ntp => {
54     :servers => ["0.ie.pool.ntp.org", "1.ie.pool.ntp.org", "europe.pool.ntp.org"]
55   }
56 )
57
58 run_list(
59   "role[ie]"
60 )