-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
52 lines (46 loc) · 1.05 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
---
driver:
name: ec2
provisioner:
name: chef_zero
# You may wish to disable always updating cookbooks in CI or other testing environments.
# For example:
# always_update_cookbooks: <%= !ENV['CI'] %>
always_update_cookbooks: true
require_chef_omnibus: "13.8.5"
verifier:
name: inspec
platforms:
- name: centos-7.3
- name: eval-win2012r2-standard
os_type: windows
driver:
image_id: ami-ee112c8b
transport:
name: winrm
elevated: true
suites:
- name: master
run_list:
- recipe[ChefRally_Jenkins_Master::default]
verifier:
inspec_tests:
- test/smoke/default
attributes:
excludes: eval-win2012r2-standard
- name: slave1
run_list:
- recipe[ChefRally_Jenkins_Master::slave]
verifier:
inspec_tests:
- test/smoke/default
attributes:
excludes: eval-win2012r2-standard
- name: windows
run_list:
- recipe[ChefRally_Jenkins_Master::windows]
verifier:
inspec_tests:
- test/smoke/default
attributes:
excludes: centos-7.3