-
Notifications
You must be signed in to change notification settings - Fork 0
/
.kitchen.yml
46 lines (42 loc) · 1018 Bytes
/
.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
---
driver:
name: vagrant
linked_clones: true
gui: false
communicator: winrm
customize:
cpus: 2
memory: 4096
provisioner:
name: dsc
transport:
name: winrm
verifier:
name: pester
test_folder: Tests/Integration
platforms:
- name: windows-2016-standard
driver:
box: tragiccode/windows-2016-standard
gui: true
provisioner:
dsc_local_configuration_manager_version: wmf5
suites:
- name: Add-And-Remove-Listener
provisioner:
configuration_script_folder: Tests/Integration/Add-And-Remove-Listener
configuration_script: MSFT_xWinRMListener.config.ps1
configuration_name:
- AddListener
- RemoveListener
configuration_data:
AllNodes:
- nodename: localhost
AddListener:
Ensure: present
Address: IP:128.0.0.1
Transport: 'HTTP'
RemoveListener:
Ensure: absent
Address: IP:128.0.0.1
Transport: 'HTTP'