forked from openstack-archive/openstack-chef-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Vagabondfile
55 lines (55 loc) · 1.49 KB
/
Vagabondfile
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
:nodes => {
:ops => {
:template => "ubuntu_1204",
:ipaddress => "10.0.3.10",
:environment => "testing",
:run_list => [
"role[os-ops-database]",
"role[os-ops-messaging]",
"role[os-ops-caching]",
"recipe[openstack-ops-database::openstack-db]"
]
},
:controller => {
:template => "ubuntu_1204",
:ipaddress => "10.0.3.11",
:environment => "testing",
:run_list => [
"role[os-base]",
"role[os-identity]",
"role[os-image]",
"role[os-compute-api]",
"role[os-compute-scheduler]",
"role[os-compute-cert]",
"role[os-compute-vncproxy]",
"role[os-block-storage]",
"role[os-dashboard]"
]
},
:compute => {
:template => "ubuntu_1204",
:ipaddress => "10.0.3.12",
:environment => "testing",
:run_list => [
"role[os-base]",
"role[os-compute-worker]"
]
}
},
:clusters => {
:simple => [
"ops",
"controller",
"compute"
]
},
:local_chef_server => {
:zero => false,
:berkshelf => true,
:librarian => false,
:enabled => true,
:auto_upload => true
},
:sudo => true
}