projects
/
chef.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add IP addresses for ironbelly
[chef.git]
/
roles
/
ironbelly.rb
1
name "ironbelly"
2
description "Master role applied to ironbelly"
3
4
default_attributes(
5
:networking => {
6
:interfaces => {
7
:internal_ipv4 => {
8
:interface => "eth0",
9
:role => :internal,
10
:family => :inet,
11
:address => "146.179.159.177"
12
},
13
:external_ipv4 => {
14
:interface => "eth1",
15
:role => :external,
16
:family => :inet,
17
:address => "193.63.75.107"
18
},
19
:external_ipv6 => {
20
:interface => "eth1",
21
:role => :external,
22
:family => :inet6,
23
:address => "2001:630:12:500:225:90ff:fec4:f6ef"
24
}
25
}
26
}
27
);
28
29
run_list(
30
"role[ic]"
31
)