]> git.openstreetmap.org Git - chef.git/blob - roles/imagery.rb
Add ignisf and add to imagery group
[chef.git] / roles / imagery.rb
1 name "imagery"
2 description "Role applied to all imagery servers"
3
4 default_attributes(
5   :accounts => {
6     :users => {
7       :dmlu => { :status => :user },
8       :htonl => { :status => :user },
9       :ignisf => { :status => :user },
10       :stereo => { :status => :administrator },
11       :imagery => {
12         :status => :role,
13         :members => [:grant, :tomh, :dmlu, :htonl, :stereo, :ignisf]
14       }
15     }
16   },
17   :sysctl => {
18     :sockets => {
19       :comment => "Increase size of connection queue",
20       :parameters => {
21         "net.core.somaxconn" => 10000
22       }
23     }
24   }
25 )
26
27 run_list(
28   "recipe[imagery::au_agri]",
29   "recipe[imagery::au_act_aerial]",
30   "recipe[imagery::au_vic_melbourne_aerial]",
31   "recipe[imagery::gb_ea]",
32   "recipe[imagery::gb_hampshire_aerial]",
33   "recipe[imagery::gb_os_sv]",
34   "recipe[imagery::gb_surrey_aerial]",
35   "recipe[imagery::za_ngi_topo]",
36   "recipe[imagery::za_coct_aerial]",
37   "recipe[imagery::na_sgswa_topo]",
38   "recipe[imagery::lu_ngl_dtm]",
39   "recipe[imagery::lu_lidar_hillshade]",
40   "recipe[imagery::za_ngi_aerial]",
41   "recipe[imagery::us_imagery]"
42 )