forked from chef-boneyard/windows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
60 lines (55 loc) · 1.15 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
driver:
name: vagrant
customize:
cpus: 2
memory: 4096
transport:
name: winrm
elevated: true
provisioner:
name: chef_zero
verifier:
name: pester
platforms:
- name: windows-7
driver_config:
box: chef/windows-7-professional
- name: windows-8.1
driver_config:
box: chef/windows-8.1-professional
- name: windows-2008r2
driver_config:
box: chef/windows-server-2008r2-standard
- name: windows-2012r2
driver_config:
box: chef/windows-server-2012r2-standard
- name: windows-2012r2-chef-12.1
driver_config:
box: chef/windows-server-2012r2-standard
provisioner:
require_chef_omnibus: 12.1.0
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: path
run_list:
- recipe[test::path]
- name: tasks
run_list:
- recipe[test::tasks]