-
Notifications
You must be signed in to change notification settings - Fork 1
/
.kitchen.yml
56 lines (52 loc) · 1.19 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
---
driver:
name: vagrant
customize:
memory: 2048
cpus: 4
provisioner:
name: chef_zero
transport:
name: winrm
platforms:
- name: ubuntu-12.04
transport:
name: ssh
- name: centos-6.5
transport:
name: ssh
- name: windows-7
driver_config:
box: windows-7
box_url: http://cdn.box-cutter.com/windows/virtualbox4.3.20/i7/eval-win7x64-enterprise-nocm-1.0.3.box
- name: windows-8.1
driver_config:
box: windows-8.1
box_url: http://cdn.box-cutter.com/windows/virtualbox4.3.20/eval-win81x64-enterprise-nocm-1.0.2.box
- name: windows-2008R2
transport:
max_threads: 20
driver_config:
box: windows-2008R2
box_url: http://cdn.box-cutter.com/windows/virtualbox4.3.20/eval-win2008r2-datacenter-nocm-1.0.2.box
- name: windows-2012R2
driver_config:
box: windows-2012R2
box_url: http://cdn.box-cutter.com/windows/virtualbox4.3.20/eval-win2012r2-datacenter-nocm-1.0.2.box
suites:
- name: win
run_list:
- 'recipe[tk-windows::default]'
attributes:
excludes:
- centos-6.5
- ubuntu-12.04
- name: nix
run_list:
- 'recipe[tk-windows::default]'
attributes:
excludes:
- windows-7
- windows-8.1
- windows-2008R2
- windows-2012R2