forked from chef-boneyard/windows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
60 lines (55 loc) · 1.3 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
provisioner:
name: chef_zero
verifier:
name: pester
platforms:
- name: windows-2008r2-chef11.18.6
driver_config:
box: chef/windows-server-2008r2-standard
provisioner:
require_chef_omnibus: 11.18.6
- name: windows-2008r2-chef12
driver_config:
box: chef/windows-server-2008r2-standard
- name: windows-2012r2-chef11.18.6
driver_config:
box: chef/windows-server-2012r2-standard
provisioner:
require_chef_omnibus: 11.18.6
- name: windows-2012r2-chef12
driver_config:
box: chef/windows-server-2012r2-standard
suites:
- name: tasks
run_list:
- recipe[windows::default]
- recipe[minimal::tasks]
- name: path
run_list:
- recipe[windows::default]
- recipe[minimal::path]
- name: certificate
run_list:
- recipe[windows::default]
- recipe[minimal::certificate]
- name: package
run_list:
- recipe[windows::default]
- recipe[minimal::package]
- name: feature
run_list:
- recipe[windows::default]
- recipe[minimal::feature]
- name: http_acl
run_list:
- recipe[windows::default]
- recipe[minimal::http_acl]
- name: font
run_list:
- recipe[windows::default]
- recipe[minimal::font]