-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.kitchen.oldsqlservers.yml
59 lines (54 loc) · 1.7 KB
/
.kitchen.oldsqlservers.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
# Test Installation and Setup of older versions of SQL Servers (2005)
---
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
puppet_version: "6.28.0"
max_retries: 5
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
winrm_transport: plaintext
verifier:
name: shell
platforms:
- name: windows-2008r2
driver_plugin: vagrant
driver_config:
box: red-gate/windows-2008r2
- name: windows-2008sp2
driver_plugin: vagrant
driver_config:
box: red-gate/windows-2008sp2
suites:
- name: sqlserver2005sp4
provisioner:
manifest: sqlserver2005sp4_2_instances.pp
custom_facts:
sqlserver2005_iso_url: <%= ENV['SQLSERVER2005_ISO_URL'] %>
verifier:
command: rspec -c -f d -I spec spec/acceptance/sqlserver2005sp4_2_instances_spec.rb
- name: sqlserver2000sp3
excludes:
- windows-2008r2
provisioner:
manifest: sqlserver2000sp3_2_instances.pp
custom_facts:
sqlserver2000_iso_url: <%= ENV['SQLSERVER2000_ISO_URL'] %>
sqlserver2000_sp3_url: <%= ENV['SQLSERVER2000_SP3_URL'] %>
verifier:
command: rspec -c -f d -I spec spec/acceptance/sqlserver2000sp3_2_instances_spec.rb