]> git.openstreetmap.org Git - chef.git/blob - roles/dribble.rb
Rely on max_connections set in attributes
[chef.git] / roles / dribble.rb
1 name "dribble"
2 description "Master role applied to dribble"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :internal => {
8         :interface => "bond0",
9         :role => :internal,
10         :inet => {
11           :address => "10.0.48.4"
12         },
13         :bond => {
14           :mode => "802.3ad",
15           :lacprate => "fast",
16           :xmithashpolicy => "layer3+4",
17           :slaves => %w[eno1 eno2 eno3 eno4 eno5 eno6]
18         }
19       },
20       :external => {
21         :interface => "bond0.3",
22         :role => :external,
23         :inet => {
24           :address => "184.104.179.132"
25         },
26         :inet6 => {
27           :address => "2001:470:1:fa1::4"
28         }
29       }
30     }
31   },
32   :postgresql => {
33     :settings => {
34       :defaults => {
35         :effective_cache_size => "350GB"
36       }
37     }
38   },
39   :vectortile => {
40     :replication => {
41       :status => :disabled,
42       :tileupdate => :disabled
43     }
44   }
45 )
46
47 run_list(
48   "role[equinix-ams]",
49   "role[vectortile]"
50 )