]> git.openstreetmap.org Git - chef.git/blob - roles/cmok.rb
Add cmok server
[chef.git] / roles / cmok.rb
1 name "cmok"
2 description "Master role applied to cmok"
3
4 default_attributes(
5   :networking => {
6     :intefaces => {
7       :external => {
8         :interface => "ens3",
9         :role => :external,
10         :inet => {
11           :prefix => "24",
12           :gateway => "10.0.0.1",
13           :public_address => "64.225.143.127"
14         }
15       }
16     }
17   },
18   :postgresql => {
19     :settings => {
20       :defaults => {
21         :effective_cache_size => "400GB"
22       }
23     }
24   },
25   :sysctl => {
26     :postgres => {
27       :comment => "Increase shared memory for postgres",
28       :parameters => {
29         "kernel.shmmax" => 9 * 1024 * 1024 * 1024,
30         "kernel.shmall" => 9 * 1024 * 1024 * 1024 / 4096
31       }
32     }
33   }
34 )
35
36 run_list(
37   "role[cloudferro-waw3-2]"
38 )