]> git.openstreetmap.org Git - chef.git/blob - roles/naga.rb
Add new Equinix addresses to Dublin hosts
[chef.git] / roles / naga.rb
1 name "naga"
2 description "Master role applied to naga"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :internal => {
8         :interface => "bond0",
9         :role => :internal,
10         :inet => {
11           :address => "10.0.64.8"
12         },
13         :bond => {
14           :mode => "802.3ad",
15           :lacprate => "fast",
16           :xmithashpolicy => "layer3+4",
17           :slaves => %w[eno1 eno2 eno3 eno4 eno49 eno50]
18         }
19       },
20       :external_he => {
21         :interface => "bond0.101",
22         :role => :external,
23         :source_route_table => 100,
24         :inet => {
25           :address => "184.104.226.104",
26           :prefix => "27",
27           :gateway => "184.104.226.97"
28         },
29         :inet6 => {
30           :address => "2001:470:1:b3b::8",
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.101",
42           :prefix => "27",
43           :gateway => "87.252.214.97"
44         },
45         :inet6 => {
46           :address => "2001:4d78:fe03:1c::8",
47           :prefix => 64,
48           :gateway => "2001:4d78:fe03:1c::1"
49         }
50       }
51     }
52   }
53 )
54
55 run_list(
56   "role[equinix-dub]",
57   "role[hp-g9]",
58   "role[subversion]",
59   "role[trac]",
60   "role[irc]",
61   "role[blogs]",
62   "role[switch2osm]",
63   "recipe[foundation::birthday]",
64   "recipe[foundation::mastodon]",
65   "recipe[foundation::owg]",
66   "recipe[foundation::welcome]",
67   "recipe[stateofthemap::container]",
68   "recipe[hot]",
69   "recipe[ideditor]",
70   "recipe[dmca]",
71   "role[otrs]"
72 )