]> git.openstreetmap.org Git - chef.git/blob - roles/gps-tile.rb
Give Stereo admin access to the CRM machine
[chef.git] / roles / gps-tile.rb
1 name "gps-tile"
2 description "Role applied to all GPS tile servers"
3
4 default_attributes(
5   :accounts => {
6     :users => {
7       :enf => { :status => :administrator },
8       :gpstile => {
9         :status => :role,
10         :members => [:enf, :tomh]
11       }
12     }
13   },
14   :apache => {
15     :mpm => "event",
16     :event => {
17       :server_limit => 20,
18       :max_request_workers => 1000,
19       :threads_per_child => 50,
20       :min_spare_threads => 50,
21       :max_spare_threads => 450,
22       :async_request_worker_factor => 4
23     }
24   }
25 )
26
27 run_list(
28   "recipe[memcached]",
29   "recipe[gps-tile]"
30 )