]> git.openstreetmap.org Git - chef.git/blob - roles/ouroboros.rb
Upgrade ouroboros to chef 12
[chef.git] / roles / ouroboros.rb
1 name "ouroboros"
2 description "Master role applied to ouroboros"
3
4 default_attributes(
5   :chef => {
6     :client => {
7       :version => "12.1.2-1"
8     }
9   },
10   :networking => {
11     :interfaces => {
12       :internal_ipv4 => {
13         :interface => "eth0",
14         :role => :internal,
15         :family => :inet,
16         :address => "146.179.159.172",
17         :hwaddress => "00:23:7d:ea:81:38"
18       },
19       :external_ipv4 => {
20         :interface => "eth1",
21         :role => :external,
22         :family => :inet,
23         :address => "193.63.75.106",
24         :hwaddress => "00:23:7d:ea:81:3a"
25       },
26       :external_ipv6 => {
27         :interface => "eth1",
28         :role => :external,
29         :family => :inet6,
30         :address => "2001:630:12:500:223:7dff:feea:813a"
31       }
32     }
33   }
34 )
35
36 run_list(
37   "role[ic]",
38   "role[hp-g6]",
39   "role[wiki]"
40 )