]> git.openstreetmap.org Git - chef.git/blob - roles/naga.rb
2586aaf4a194fe35551afefa0a3b75d51f47041d
[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 => {
21         :interface => "bond0.101",
22         :role => :external,
23         :inet => {
24           :address => "184.104.226.104"
25         },
26         :inet6 => {
27           :address => "2001:470:1:b3b::8"
28         }
29       }
30     }
31   },
32   :otrs => {
33     :site => "test.otrs.openstreetmap.org",
34     :site_aliases => ["test.otrs.osm.org"],
35     :database_cluster => "16/main"
36   },
37   :postgresql => {
38     :versions => ["16"],
39     :settings => {
40       "16" => {
41         :port => 5433
42       }
43     }
44   }
45 )
46
47 run_list(
48   "role[equinix-dub]",
49   "role[hp-g9]",
50   "role[subversion]",
51   "role[trac]",
52   "role[irc]",
53   "role[blogs]",
54   "role[switch2osm]",
55   "recipe[foundation::mastodon]",
56   "recipe[foundation::owg]",
57   "recipe[foundation::welcome]",
58   "recipe[stateofthemap::container]",
59   "recipe[hot]",
60   "recipe[ideditor]",
61   "recipe[dmca]",
62   "recipe[otrs::debian]"
63 )