]> git.openstreetmap.org Git - chef.git/blob - roles/osuosl.rb
Reduce cache memory limit on azure
[chef.git] / roles / osuosl.rb
1 name "osuosl"
2 description "Role applied to all servers at OSUOSL"
3
4 default_attributes(
5   :accounts => {
6     :users => {
7       :osuadmin => { :status => :administrator }
8     }
9   },
10   :hosted_by => "OSUOSL",
11   :location => "Corvallis, Oregon",
12   :timezone => "PST8PDT",
13   :networking => {
14     :nameservers => ["8.8.8.8", "8.8.4.4"],
15     :roles => {
16       :external => {
17         :zone => "ool",
18         :inet => {
19           :prefix => "28",
20           :gateway => "140.211.167.97"
21         },
22         :inet6 => {
23           :prefix => "64",
24           :gateway => "2605:bc80:3010:700::1"
25         }
26       }
27     }
28   }
29 )
30
31 override_attributes(
32   :ntp => {
33     :servers => ["ntp.osuosl.org"]
34   }
35 )
36
37 run_list(
38   "role[us]"
39 )