]> git.openstreetmap.org Git - chef.git/blob - roles/bowser.rb
Update network interface name for longma
[chef.git] / roles / bowser.rb
1 name "bowser"
2 description "Master role applied to bowser"
3
4 default_attributes(
5   :location => "Carlton, Victoria, Australia",
6   :networking => {
7     :interfaces => {
8       :external_ipv4 => {
9         :interface => "bond0",
10         :role => :external,
11         :family => :inet,
12         :address => "138.44.68.106",
13         :prefix => "30",
14         :gateway => "138.44.68.106",
15         :mtu => 9000,
16         :bond => {
17           :slaves => %w[ens14f0 ens14f1]
18         }
19       }
20     },
21     :nameservers => [
22       "202.158.207.1",
23       "202.158.207.2"
24     ]
25   }
26 )
27
28 run_list(
29   "role[aarnet]"
30 )