-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
83 lines (78 loc) · 1.88 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
74
75
76
77
78
79
80
81
82
83
# Test installations of SSMS
---
driver:
name: vagrant
provisioner:
name: puppet_apply
custom_options: <%= ENV['PUPPET_COLOR'] %>
puppet_debug: <%= ENV['PUPPET_DEBUG'] %>
manifests_path: spec/manifests
modules_path: .kitchen-modules
require_chef_for_busser: false
resolve_with_librarian_puppet: false
puppet_detailed_exitcodes: true
require_puppet_collections: true
puppet_detailed_exitcodes: true
max_retries: 3
wait_for_retry: 40
retry_on_exit_code:
- 2 # The run succeeded, and some resources were changed.
- 6 # The run succeeded, and included both changes and failures.
transport:
name: winrm
elevated: true
verifier:
name: shell
platforms:
- name: windows-2016-core
driver_plugin: vagrant
driver_config:
box: red-gate/windows-2016-core
provisioner:
puppet_version: "6.28.0"
transport:
name: winrm
winrm_transport: plaintext
- name: windows-2019-core
driver_plugin: vagrant
driver_config:
box: red-gate/windows-2019-core
customize:
cpus: 2
memory: 4096
vrde: "off"
vram: 64
provisioner:
puppet_version: "6.28.0"
transport:
name: winrm
winrm_transport: plaintext
- name: windows-2022-core
driver_plugin: vagrant
driver_config:
box: red-gate/windows-2022-core
customize:
cpus: 2
memory: 4096
vrde: "off"
vram: 64
provisioner:
puppet_version: "6.28.0"
transport:
name: winrm
winrm_transport: plaintext
- name: windows-2012r2
driver_plugin: vagrant
driver_config:
box: red-gate/windows-2012r2
provisioner:
puppet_version: "6.28.0"
transport:
name: winrm
winrm_transport: plaintext
suites:
- name: windows_tests
provisioner:
manifest: windows.pp
verifier:
command: rspec -c -f d -I spec spec/acceptance/windows.rb