]> git.openstreetmap.org Git - chef.git/blob - roles/grindtooth.rb
Switch horntail to use systemd-networkd
[chef.git] / roles / grindtooth.rb
1 name "grindtooth"
2 description "Master role applied to grindtooth"
3
4 default_attributes(
5   :networking => {
6     :engine => "systemd-networkd",
7     :interfaces => {
8       :internal => {
9         :interface => "enp3s0f0.2801",
10         :role => :internal,
11         :inet => {
12           :address => "10.0.0.19"
13         }
14       },
15       :external => {
16         :interface => "enp3s0f0.2800",
17         :role => :external,
18         :inet => {
19           :address => "193.60.236.15"
20         }
21       }
22     }
23   }
24 )
25
26 run_list(
27   "role[ucl]",
28   "role[taginfo]"
29 )