]> git.openstreetmap.org Git - chef.git/blob - roles/noquiklos.rb
Block unspecified and multicast addresses on the outside
[chef.git] / roles / noquiklos.rb
1 name "noquiklos"
2 description "Master role applied to noquiklos"
3
4 default_attributes(
5   :memcached => {
6     :memory_limit => 24 * 1024
7   },
8   :networking => {
9     :firewall => {
10       :engine => "nftables"
11     },
12     :interfaces => {
13       :internal_ipv4 => {
14         :interface => "eth0.2801",
15         :role => :internal,
16         :family => :inet,
17         :address => "10.0.0.13"
18       },
19       :external_ipv4 => {
20         :interface => "eth0.2800",
21         :role => :external,
22         :family => :inet,
23         :address => "193.60.236.16"
24       }
25     }
26   }
27 )
28
29 run_list(
30   "role[ucl]",
31   "role[hp-dl360-g6]"
32 )