projects
/
chef.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add roles for spike-{06,07,08}
[chef.git]
/
roles
/
spike-07.rb
1
name "spike-07"
2
description "Master role applied to spike-07"
3
4
default_attributes(
5
:networking => {
6
:interfaces => {
7
:internal_ipv4 => {
8
:interface => "bond0",
9
:role => :internal,
10
:family => :inet,
11
:address => "10.0.48.12",
12
:bond => {
13
:slaves => %w[eno1 eno2]
14
}
15
},
16
:external_ipv4 => {
17
:interface => "bond0.2",
18
:role => :external,
19
:family => :inet,
20
:address => "130.117.76.12"
21
},
22
:external_ipv6 => {
23
:interface => "bond0.2",
24
:role => :external,
25
:family => :inet6,
26
:address => "2001:978:2:2C::172:C"
27
}
28
}
29
}
30
)
31
32
run_list(
33
"role[equinix]"
34
)