forked from chef-boneyard/windows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
73 lines (68 loc) · 1.41 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
driver:
name: vagrant
customize:
cpus: 2
memory: 4096
transport:
name: winrm
elevated: true
provisioner:
name: chef_zero
deprecations_as_errors: true
verifier:
name: pester
platforms:
- name: windows-8.1
driver_config:
box: chef/windows-8.1-professional
- name: windows-10
driver_config:
box: chef/windows-10-enterprise
- name: windows-2008r2
driver_config:
box: chef/windows-server-2008r2-standard
- name: windows-2012r2
driver_config:
box: chef/windows-server-2012r2-standard
- name: windows-2016-chef-12.6
driver_config:
box: chef/windows-server-2016-standard
provisioner:
require_chef_omnibus: 12.7.2
suites:
- name: autorun
run_list:
- recipe[test::autorun]
- name: certificate
run_list:
- recipe[test::certificate]
- name: feature
run_list:
- recipe[test::feature]
- name: font
run_list:
- recipe[test::font]
- name: http_acl
run_list:
- recipe[test::http_acl]
- name: package
run_list:
- recipe[test::package]
- name: pagefile
run_list:
- recipe[test::pagefile]
- name: path
run_list:
- recipe[test::path]
- name: share
run_list:
- recipe[test::share]
- name: shortcut
run_list:
- recipe[test::shortcut]
- name: tasks
run_list:
- recipe[test::tasks]
- name: zipfile
run_list:
- recipe[test::zipfile]