]> git.openstreetmap.org Git - chef.git/blob - roles/viserion.rb
Drop roles for thorn-02 and thorn-03
[chef.git] / roles / viserion.rb
1 name "viserion"
2 description "Master role applied to viserion"
3
4 default_attributes(
5   :accounts => {
6     :users => {
7       :anovak => { :status => :administrator }
8     }
9   },
10   :location => "Pula, Croatia",
11   :munin => {
12     :allow => ["193.198.233.210"]
13   },
14   :networking => {
15     :interfaces => {
16       :external_ipv4 => {
17         :interface => "eth0",
18         :role => :external,
19         :family => :inet,
20         :address => "193.198.233.211",
21         :prefix => "29",
22         :gateway => "193.198.233.209"
23       },
24       :external_ipv6 => {
25         :interface => "eth0",
26         :role => :external,
27         :family => :inet6,
28         :address => "2001:b68:4cff:3::3",
29         :prefix => "64",
30         :gateway => "2001:b68:4cff:3::1"
31       }
32     }
33   }
34 )
35
36 run_list(
37   "role[carnet]"
38 )