forked from openstreetmap/chef
-
Notifications
You must be signed in to change notification settings - Fork 0
/
faffy.rb
38 lines (36 loc) · 840 Bytes
/
faffy.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name "faffy"
description "Master role applied to faffy"
default_attributes(
:networking => {
:interfaces => {
:internal_ipv4 => {
:interface => "bond0",
:role => :internal,
:family => :inet,
:address => "10.0.48.3",
:bond => {
:mode => "802.3ad",
:lacprate => "fast",
:xmithashpolicy => "layer3+4",
:slaves => %w[eno1 eno2 eno3 eno4 eno5 eno6]
}
},
:external_ipv4 => {
:interface => "bond0.2",
:role => :external,
:family => :inet,
:address => "130.117.76.3"
},
:external_ipv6 => {
:interface => "bond0.2",
:role => :external,
:family => :inet6,
:address => "2001:978:2:2C::172:3"
}
}
}
)
run_list(
"role[equinix-ams]",
"role[dev]"
)