-
Notifications
You must be signed in to change notification settings - Fork 5
/
kitchen.yml
80 lines (75 loc) · 1.92 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
---
driver:
name: vagrant
linked_clone: true
provision: true
vagrantfiles:
- kitchen/vagrant_windows_bootstrap.rb
lifecycle:
pre_converge:
- pwsh -Command "Invoke-psake Build -parameters @{version='1.99.999-alpha1'}"
provisioner:
name: dsc
dsc_local_configuration_manager_version: wmf5
dsc_local_configuration_manager:
reboot_if_needed: true
configuration_mode: 'ApplyOnly'
debug_mode: 'None'
configuration_name: default
configuration_data:
AllNodes:
- NodeName: central
IsCentral: true
PSDscAllowPlainTextPassword: true
PSDscAllowDomainUser: true
- NodeName: rim1
PSDscAllowPlainTextPassword: true
PSDscAllowDomainUser: true
modules_from_gallery:
- name: xPSDesiredStateConfiguration
requiredversion: 9.1.0
- name: xSmbShare
requiredversion: 2.2.0.0
- name: xNetworking
requiredversion: 5.7.0.0
- name: Qlik-Cli
requiredversion: 1.21.0
verifier:
name: pester
test_folder: tests/integration
pester_install:
# Version 5 and later does no yet work with test kitchen
MaximumVersion: '4.99.999'
bootstrap:
repository_url: https://www.powershellgallery.com/api/v2
modules:
- PackageManagement
- PowerShellGet
platforms:
- name: windows-2019
os_type: windows
shell: powershell
transport:
name: winrm
driver:
box: qlik/win2k19
- name: windows-2016
os_type: windows
shell: powershell
transport:
name: winrm
driver:
box: qlik/win2k16
suites:
- name: default
driver:
vm_hostname: central
network:
- ["private_network", {ip: "192.168.33.2"}]
- ["forwarded_port", {guest: 443, host: 8443, auto_correct: true}]
- ["forwarded_port", {guest: 4242, host: 4242, auto_correct: true}]
- name: rim
driver:
vm_hostname: rim1
network:
- ["private_network", {ip: "192.168.33.3"}]