]> git.openstreetmap.org Git - chef.git/blob - roles/orm.rb
Add role for orm
[chef.git] / roles / orm.rb
1 name "orm"
2 description "Master role applied to orm"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :internal => {
8         :inet => {
9           :address => "10.5.7.34",
10           :prefix => "29",
11           :gateway => "10.5.7.33",
12           :public_address => "23.139.196.5"
13         },
14         :inet6 => {
15           :address => "2602:f629:0:bc::2",
16           :prefix => "64",
17           :gateway => "2602:f629:0:bc::1"
18         },
19         :bond => {
20           :slaves => %w[eno1 eno2]
21         }
22       }
23     }
24   }
25 )
26
27 run_list(
28   "role[pixeldeck]"
29 )