]> git.openstreetmap.org Git - chef.git/blob - roles/boitata.rb
Enable netplan for all UCL machines
[chef.git] / roles / boitata.rb
1 name "boitata"
2 description "Master role applied to boitata"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :external_ipv4 => {
8         :interface => "ens3",
9         :role => :external,
10         :family => :inet,
11         :address => "200.236.31.207",
12         :prefix => "25",
13         :gateway => "200.236.31.254"
14       },
15       :external_ipv6 => {
16         :interface => "ens3",
17         :role => :external,
18         :family => :inet6,
19         :address => "2801:82:80ff:8002:216:ccff:feaa:21",
20         :prefix => "64",
21         :gateway => "fe80::92e2:baff:fe0d:e24"
22       }
23     }
24   },
25   :squid => {
26     :cache_mem => "7500 MB",
27     :cache_dir => "coss /store/squid/coss-01 128000 block-size=8192 max-size=262144 membufs=80"
28   },
29   :tilecache => {
30     :tile_parent => "curitiba.render.openstreetmap.org",
31     :tile_siblings => [
32       "cherufe.openstreetmap.org",
33       "ascalon.openstreetmap.org",
34       "stormfly-02.openstreetmap.org",
35       "jakelong.openstreetmap.org"
36     ]
37   }
38 )
39
40 run_list(
41   "role[c3sl]",
42   "role[tilecache]"
43 )