forked from sunggun-yu/chef-mongodb3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
247 lines (233 loc) · 5.02 KB
/
.kitchen.yml
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
---
driver:
name: vagrant
provisioner:
name: chef_zero
require_chef_omnibus: true
environments_path: 'test/environments'
data_bags_path: 'test/data_bags'
roles_path: 'test/roles'
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt]
attributes:
apt:
compile_time_update: true
- name: ubuntu-14.04
run_list:
- recipe[apt]
attributes:
apt:
compile_time_update: true
- name: debian-7.8
run_list:
- recipe[apt]
attributes:
apt:
compile_time_update: true
- name: centos-6.6
- name: centos-7.2
- name: oel-6.6
driver:
box: rafacas/oel66-plain
box_url: https://atlas.hashicorp.com/rafacas/boxes/oel66-plain/versions/1.0.0/providers/virtualbox.box
- name: ami-2014.03
driver:
box_url: http://images.geekandi.com/amazon-linux/vagrant-amazon-linux64-2014.03-public-virtualbox.box
suites:
- name: default
driver:
vm_hostname: mongo3
run_list:
- recipe[mongodb3::default]
attributes:
chef_client:
config:
force_logger: true
log_level: info
build-essential:
compile_time: false
provisioner:
client_rb:
environment: dev
excludes:
- oel-6.6
- ami-2014.03
- name: custom
run_list:
- recipe[mongodb3-test::custom]
attributes:
chef_client:
config:
force_logger: true
log_level: info
build-essential:
compile_time: false
provisioner:
client_rb:
environment: dev
includes:
- ubuntu-14.04
- centos-7.2
- name: chef-client-11
driver:
vm_hostname: mongo3
driver_config:
require_chef_omnibus: 11.18.12
run_list:
- recipe[mongodb3::default]
excludes:
- debian-7.8
- oel-6.6
- ami-2014.03
- name: default-30x
run_list:
- recipe[mongodb3-test::default-30x]
attributes:
excludes:
- oel-6.6
- ami-2014.03
- name: replica
driver:
vm_hostname: replica
run_list:
- role[replset]
attributes:
chef_client:
config:
force_logger: true
log_level: info
build-essential:
compile_time: false
provisioner:
client_rb:
environment: dev
excludes:
- oel-6.6
- ami-2014.03
- name: configsvr
driver:
vm_hostname: configsvr
run_list:
- role[configsvr]
attributes:
chef_client:
config:
force_logger: true
log_level: info
build-essential:
compile_time: false
provisioner:
client_rb:
environment: dev
excludes:
- oel-6.6
- ami-2014.03
- name: mongos
driver:
vm_hostname: mongos
run_list:
- role[mongos]
attributes:
chef_client:
config:
force_logger: true
log_level: info
build-essential:
compile_time: false
provisioner:
client_rb:
environment: dev
excludes:
- oel-6.6
- ami-2014.03
- name: wired-tiger
driver:
vm_hostname: wired-tiger
run_list:
- role[wired_tiger]
attributes:
mongodb3:
version: '3.0.9'
chef_client:
config:
force_logger: true
log_level: info
build-essential:
compile_time: false
provisioner:
client_rb:
environment: dev
excludes:
- oel-6.6
- ami-2014.03
- name: mms-automation-agent
driver:
vm_hostname: mms-automation-agent
run_list:
- role[mms_automation_agent]
attributes:
chef_client:
config:
force_logger: true
log_level: info
build-essential:
compile_time: false
provisioner:
client_rb:
environment: dev
excludes:
- oel-6.6
- ami-2014.03
- debian-7.8
- centos-7.2
- name: mms-automation-agent-with-databag
driver:
vm_hostname: mms-automation-agent
encrypted_data_bag_secret_key_path: "test/data_bags/encrypted_data_bag_secret"
run_list:
- recipe[mongodb3-test::mms_automation_agent_with_data_bag]
provisioner:
client_rb:
environment: dev
includes:
- ubuntu-12.04
- name: mms-monitoring-agent
driver:
vm_hostname: mms-monitoring-agent
run_list:
- role[mms_monitoring_agent]
attributes:
chef_client:
config:
force_logger: true
log_level: info
build-essential:
compile_time: false
provisioner:
client_rb:
environment: dev
excludes:
- oel-6.6
- ami-2014.03
- debian-7.8
- centos-7.2
- name: amazon
driver:
vm_hostname: mongo3
run_list:
- recipe[mongodb3-test::amazon]
- recipe[mongodb3::default]
attributes:
chef_client:
config:
force_logger: true
log_level: info
build-essential:
compile_time: false
provisioner:
client_rb:
environment: dev
includes:
- ami-2014.03