]> git.openstreetmap.org Git - chef.git/blob - roles/norbert.rb
Revert "Disable OAuth 1.0a and basic authentication"
[chef.git] / roles / norbert.rb
1 name "norbert"
2 description "Master role applied to norbert"
3
4 default_attributes(
5   :dhcpd => {
6     :first_address => "10.0.63.1",
7     :last_address => "10.0.63.254"
8   },
9   :networking => {
10     :interfaces => {
11       :internal => {
12         :interface => "bond0",
13         :role => :internal,
14         :inet => {
15           :address => "10.0.48.17"
16         },
17         :bond => {
18           :mode => "802.3ad",
19           :lacprate => "fast",
20           :xmithashpolicy => "layer3+4",
21           :slaves => %w[enp25s0f0 enp25s0f1]
22         }
23       },
24       :external => {
25         :interface => "bond0.3",
26         :role => :external,
27         :inet => {
28           :address => "184.104.179.145"
29         },
30         :inet6 => {
31           :address => "2001:470:1:fa1::11"
32         }
33       }
34     }
35   },
36   :planet => {
37     :replication => "enabled"
38   }
39 )
40
41 run_list(
42   "role[equinix-ams]",
43   "role[gateway]",
44   "role[geodns]",
45   "role[backup]",
46   "role[planet]",
47   "role[planetdump]",
48   "recipe[dhcpd]",
49   "recipe[tilelog]"
50 )