]> git.openstreetmap.org Git - chef.git/blob - roles/spike-08.rb
Rework network configuration in Amsterdam to avoid duplication
[chef.git] / roles / spike-08.rb
1 name "spike-08"
2 description "Master role applied to spike-08"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :internal => {
8         :inet => {
9           :address => "10.0.48.8"
10         },
11         :bond => {
12           :slaves => %w[eno1 eno2]
13         }
14       },
15       :henet => {
16         :inet => {
17           :address => "184.104.179.136"
18         },
19         :inet6 => {
20           :address => "2001:470:1:fa1::8"
21         }
22       },
23       :equinix => {
24         :inet => {
25           :address => "82.199.86.104"
26         },
27         :inet6 => {
28           :address => "2001:4d78:500:5e3::8"
29         }
30       }
31     }
32   }
33 )
34
35 run_list(
36   "role[equinix-ams]",
37   "role[hp-g9]",
38   "role[web-frontend]"
39 )