]> git.openstreetmap.org Git - chef.git/blob - roles/bytemark.rb
Add roles for spike-0[45] and thorn-0[45]
[chef.git] / roles / bytemark.rb
1 name "bytemark"
2 description "Role applied to all servers at Bytemark"
3
4 default_attributes(
5   :hosted_by => "Bytemark",
6   :location => "York, England",
7   :networking => {
8     :nameservers => ["8.8.8.8", "8.8.4.4", "2001:4860:4860::8888", "2001:4860:4860::8844"],
9     :roles => {
10       :internal => {
11         :inet => {
12           :prefix => "20",
13           :gateway => "10.0.32.20"
14         }
15       },
16       :external => {
17         :zone => "bm",
18         :inet => {
19           :prefix => "28",
20           :gateway => "89.16.162.17"
21         },
22         :inet6 => {
23           :prefix => "64",
24           :gateway => "fe80::1"
25         }
26       }
27     }
28   }
29 )
30
31 override_attributes(
32   :ntp => {
33     :servers => ["0.uk.pool.ntp.org", "1.uk.pool.ntp.org", "europe.pool.ntp.org"]
34   }
35 )
36
37 run_list(
38   "role[gb]"
39 )